Cod sursa(job #254838)
| Utilizator | Data | 7 februarie 2009 19:36:24 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
__int64 a,b;
f>>a>>b;f.close();
g<<a+b;g.close();
return 0;
}