Cod sursa(job #2188333)
Utilizator | Data | 27 martie 2018 09:05:41 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | bpc9 | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a,b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin >> a >> b;
fout << a+b;
return 0;
}