Cod sursa(job #779591)

Utilizator andreeainfo_dAndreea Dutulescu andreeainfo_d Data 18 august 2012 09:48:54
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.14 kb
#include<fstream.h>
long a,b;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main()
{
	in>>a>>b;
	out<<a+b<<'\n';
	return 0;
}