Cod sursa(job #2341051)
| Utilizator | Data | 11 februarie 2019 15:11:58 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-32 | Status | done |
| Runda | sem2_1 | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a, b;
fin >> a >> b;
fout << a+b;
return 0;
} 