Cod sursa(job #2252458)
Utilizator | Data | 2 octombrie 2018 19:15:28 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | marpmi_2018 | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream f ("adunare.in");
int a, b;
f>>a;
f>>b;
a=a+b;
ofstream of ("adunare.out");
of<<a;
return 0;
}