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