Cod sursa(job #2882849)
Utilizator | Data | 31 martie 2022 20:51:34 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream>
using namespace std;
ifstream cin("adunare.in");
ofstream cout("adunare.out");
int main()
{
long long x, y;
cin >> x;
cin >> y;
cout << x + y;
}