Cod sursa(job #218951)
| Utilizator | Data | 4 noiembrie 2008 12:12:21 | |
|---|---|---|---|
| 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");
ofstream g("suma.out");
f>>a;
f>>b;
g<<a+b;
}
