Cod sursa(job #1018153)

Utilizator ClaudyuSuhaianu Claudiu Claudyu Data 28 octombrie 2013 22:16:34
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <iostream>
#include <fstream>
using namespace std;
long int x,y;
int main()
{
    ifstream a ("adunare.in");
    ofstream b ("adunare.out");
    a >> x >> y;
    b << x + y;
    return 0;
}