Cod sursa(job #218950)
| Utilizator | Data | 4 noiembrie 2008 12:09:38 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.12 kb |
#include<fstream.h>
int main()
{long a,b;
ifstream f("suma.in");
ostream g("suma.out);
f>>a;
f>>b;
g<<a+b;
}