Cod sursa(job #2219288)
Utilizator | Data | 8 iulie 2018 12:06:57 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
ofstream fout("adunare.out");
int main()
{
int a,b;
cin >> a;
cout << endl;
cin >> b;
fout << a+b;
return 0;
}