Cod sursa(job #16704)
Utilizator | Data | 13 februarie 2007 21:22:07 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
# include<fstream.h>
main()
{long int a,b;
ifstream fi;
ofstream fo;
fi.open("adunare.in");
fo.open("adunare.out");
fi>>a;fi>>b;fo<<a+b;
fi.close();
fo.close();
}