Cod sursa(job #1837477)
Utilizator | Data | 29 decembrie 2016 18:55:10 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream>
using namespace std;
int x, y;
ifstream cin("adunare.in");
ofstream cout("adunare.out");
int main()
{
cin >> x >> y;
cout << x + y;
return 0;
}