Cod sursa(job #898806)
Utilizator | Data | 28 februarie 2013 11:48:31 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<fstream>
using namespace std;
long int a,b,s;
int main()
{ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
s=a+b;
g<<s<<'\n';
f.close();
g.close();
return 0;
}