Cod sursa(job #2978809)
Utilizator | Data | 14 februarie 2023 15:09:27 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.26 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fi("adunare.in");
ofstream fo("adunare.out");
int main()
{
long long a, b;
cin >> a;
cin >> b;
cout << a + b << endl;
fi.close();
fo.close();
return 0;
}