Cod sursa(job #2634461)
Utilizator | Data | 10 iulie 2020 22:44:17 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 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;
return 0;
}