Cod sursa(job #1571206)
Utilizator | Data | 17 ianuarie 2016 15:19:13 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream ifs("adunare.in");
ofstream ofs("adunare.out");
int main()
{
int x, y;
ifs >> x >> y;
ofs << x + y;
return 0;
}