Cod sursa(job #766678)
| Utilizator | Data | 11 iulie 2012 20:40:24 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream>
using namespace std;
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;
}
