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