Cod sursa(job #2853266)
Utilizator | Data | 20 februarie 2022 10:04:35 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
// Project generated by elpengu at Sun Feb 20 10:01:32 EET 2022
#include <bits/stdc++.h>
std::ifstream in("adunare.in");
std::ofstream out("adunare.out");
int main() {
long long a, b;
in >> a >> b;
out << (a + b);
return 0;
}