Cod sursa(job #66297)
Utilizator | Data | 17 iunie 2007 16:52:37 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
main()
{
fstream f("adunare.in",ios::in);
fstream g("adunare.out",ios::out);
long int n,m,s;
f>>n;
f>>m;
s=n+m;
g<<s;
}