Cod sursa(job #270833)
| Utilizator | Data | 4 martie 2009 17:26:45 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.13 kb |
#include<fstream.h>
main()
{int a,b;
ifstream f("adunare.in");
f>>a;f>>b;
ofstream g("adunare.out");
g<<a+b;
g.close();}