Cod sursa(job #2404609)
Utilizator | Data | 13 aprilie 2019 09:47:27 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.27 kb |
#include <iostream>
#include <fstream>
using namespace std;
using std::ifstream;
using std::ofstream;
int main() {
ifstream in("adunare.in");
ofstream out("adunare.out");
int a, b, s = 0;
cin >> a;
cin >> b;
s = a + b;
cout << s;
in.close();
out.close();
return 0;
}