Cod sursa(job #2800745)
Utilizator | Data | 13 noiembrie 2021 21:20:29 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.26 kb |
#include <iostream>
#include <fstream>
#include <algorithm>
using namespace std;
std::fstream fin("adunare.in", std::ios::in);
std::fstream fout("adunare.out", std::ios::out);
int main(){
int64_t a, b; fin >> a >> b;
fout << a + b;
return 0;
}