Cod sursa(job #2282244)
Utilizator | Data | 13 noiembrie 2018 15:21:19 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main() {
ios::sync_with_stdio(false);
int a, b; fin >> a >> b;
fout << a + b;
return 0;
}