Cod sursa(job #2926756)
| Utilizator | Data | 18 octombrie 2022 17:18:23 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | arnold-testare-2 | Marime | 0.26 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream bemenet("adunare.in");
ofstream kimenet("adunare.out");
int x, y;
bemenet >> x >> y;
kimenet << x + y << endl;
return 0;
}
