Cod sursa(job #134978)
| Utilizator | Data | 12 februarie 2008 19:10:44 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
int main()
{ifstream i("adunare.in");
ofstream o("adunare.out");
unsigned long a,b;
i>>a>>b;
o<<(a+b)<<endl;
i.close();
o.close(); }