Cod sursa(job #910140)
Utilizator | Data | 10 martie 2013 18:57:15 | |
---|---|---|---|
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 main()
{int a,b;
f>>a;
f>>b;
g<<a+b;
g.close();
return 0;
}