Cod sursa(job #587060)
| Utilizator | Data | 3 mai 2011 20:14:27 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.11 kb |
#include <fstream.h>
main()
{int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
g<<a+b;
}