Cod sursa(job #2439605)
Utilizator | Data | 16 iulie 2019 15:22:00 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <iostream>
#include <fstream>
std::ifstream f("adunare.in");
std::ofstream g("adunare.out");
int main(){
unsigned long long a,b;
f >> a >> b;
g << a + b;
f.close();
g.close();
return 0;
}