Cod sursa(job #350975)

Utilizator shnakoVlad Schnakovszki shnako Data 26 septembrie 2009 13:58:25
Problema A+B Scor 100
Compilator cpp Status done
Runda info.conc.sept.2 Marime 0.16 kb
#include <fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
unsigned long a, b;
int main()
{
f>>a>>b;
g<<(a+b);
f.close();
g.close();
return 0;
}