Cod sursa(job #754890)

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