Cod sursa(job #2211652)
Utilizator | Data | 11 iunie 2018 11:29:21 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream g("adunare.in");
ofstream f("adunare.out");
int a,b;
int main()
{
g>>a>>b;
f<<a+b;
g.close();
f.close();
return 0;
}