Cod sursa(job #707847)
Utilizator | Data | 6 martie 2012 07:37:43 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
long long int a,b;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return a+b;
}