Cod sursa(job #645489)

Utilizator DanFFodorean Dan DanF Data 9 decembrie 2011 20:11:20
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include<fstream.h>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{long a,b;
 f>>a>>b;
 g<<a+b;
 f.close();
 g.close();
 return 0;
}