Cod sursa(job #3203116)
Utilizator | Data | 13 februarie 2024 09:30:41 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream cin("adunare.in");
ofstream cout("adunare.out");
int main() {
int x, y;
cin >> x >> y;
cout << x + y;
return 0;
}