Cod sursa(job #17120)
Utilizator | Data | 14 februarie 2007 21:34:09 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream.h>
fstream f ("adunare.in",ios::in);
fstream g ("adunare.out",ios::out);
long int a,b,i,s;
void main()
{
f>>a>>b;
s=a+b;
g<<s;
}