Cod sursa(job #782903)

Utilizator RusuRusu Daniel Rusu Data 30 august 2012 15:34:10
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.18 kb
#include <fstream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long a,b;
int main()
{fin>>a>>b;
 fout<<a+b<<'\n';
 fin.close();
 fout.close();
 return 0;
}