Cod sursa(job #3276709)
Utilizator | Data | 14 februarie 2025 11:32:44 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main()
{
long long a, b;
in >> a >> b;
out << a + b;
}