Cod sursa(job #37585)
| Utilizator | Data | 25 martie 2007 11:13:20 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream.h>
int main()
{unsigned long long long int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
a+=b;
g<<a;
return 0; g.close(); f.close();}