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