Cod sursa(job #552431)

Utilizator theoneandreiZamfira Andrei theoneandrei Data 12 martie 2011 12:42:31
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.13 kb
#include <fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
long long a,b; 
int main()
{
	f>>a>>b;
	g<<a+b;
}