Cod sursa(job #2275782)
Utilizator | Data | 3 noiembrie 2018 16:33:04 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
ifstream f(adunare.in);
ofstream g(adunare.out);
using namespace std;
int main()
{
int a,b;
f>>a;
f>>b;
g<<a+b;
f.close();
g.close();
return 0;
}