Cod sursa(job #935511)
Utilizator | Data | 3 aprilie 2013 18:07:02 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
int a,b,s;
f>>a;
f>>b;
s=a+b;
g<<s;
cout << "Hello world!" << endl;
return 0;
}