Cod sursa(job #2267611)
Utilizator | Data | 23 octombrie 2018 19:54:44 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fout("adunare.in");
ofstream fin("adunare.out");
int main()
{
int a, b;
fout >> a >> b;
fin << a + b;
fout.close();
fin.close();
return 0;
}