Cod sursa(job #2213215)
Utilizator | Data | 15 iunie 2018 19:36:25 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include<iostream>
#include<fstream>
int main()
{
std::ifstream in("adunare.in");
std::ofstream out("adunare.out");
long long a;
long long b;
in >> a >> b;
out << a + b;
return 0;
}