Cod sursa(job #11967)
| Utilizator | Data | 2 februarie 2007 14:54:59 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
int main()
{ ifstream f("adunari.in");
ofstream g("adunari.out");
unsigned long a,b ;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;
}