Cod sursa(job #754885)

Utilizator Eugen_VlasieFMI Vlasie Eugen Eugen_Vlasie Data 3 iunie 2012 21:41:11
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.13 kb
#include<fstream>
ifstream f("A+B.in");
ofstream g("A+B.out");
int main
{
	long long a,b;
	f>>a>>b;
	g<<a+b<<'\n';
	return 0;
}