Cod sursa(job #543688)
Utilizator | Data | 28 februarie 2011 14:58:58 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
int main()
{ int x,y;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>x>>y;
g<<x+y;
f.close();
g.close();
return 0;
}