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