Cod sursa(job #1313996)
Utilizator | Data | 11 ianuarie 2015 13:40:43 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream>
using namespace std;
ifstream fi ("adunare.in");
ofstream fo ("adunare.out");
int main ()
{
int x,y;
fi>>x>>y;
fo<<x+y;
fi.close();
fo.close();
return 0;
}