Cod sursa(job #1513682)
Utilizator | Data | 29 octombrie 2015 20:40:28 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.26 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
int a, b;
f>>a;
f>>b;
f.close();
ofstream g("adunare.out");
g<<a+b;
cout << "Hello world!" << endl;
return 0;
}