Cod sursa(job #312631)
Utilizator | Data | 6 mai 2009 19:27:52 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | super_easy | Marime | 0.14 kb |
#include<fstream.h>
fstream f("adunare.in",ios::in);
fstream g("adunare.out",ios::out);
main ( )
{
int a,b;
f>>a;
f>>b;
g<<a+b;
}