Cod sursa(job #2245801)
| Utilizator | Data | 25 septembrie 2018 21:21:32 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream in("adunare.in");
ofstream out("adunare.out");
int x;
int y;
in >> x;
in >> y;
out << x + y;
return 0;
}