Cod sursa(job #2125966)
Utilizator | Data | 8 februarie 2018 22:09:47 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fi("adunare.in");
ofstream fo("adunare.out");
int main() {
int a, b;
fi >> a >> b;
fo << a + b << endl;
return 0; }