Cod sursa(job #2357828)
| Utilizator | Data | 27 februarie 2019 19:12:26 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-32 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.27 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a, b, s;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin >> a >> b;
s = a + b;
fout << s;
fin.close();
fout.close();
return 0;
}
