Cod sursa(job #883077)
Utilizator | Data | 19 februarie 2013 18:30:58 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
int main()
{f>>a;
f>>b;
g<<a+b;
f.close();
g.close();
return ;
}