Cod sursa(job #23030)
| Utilizator | Data | 27 februarie 2007 22:29:30 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<iostream.h>
#include<fstream.h>
main()
{long a,b;
fstream f("adunare.in",ios::in);
fstream g("adunare.out",ios::out);
f>>a;f>>b;
a=a+b;g<<a;}
