Cod sursa(job #29393)
Utilizator | Data | 9 martie 2007 11:43:10 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
# include <fstream.h>
void main ()
{
unsigned long int A,B,S;
ifstream f ("adunare.in") ;
ofstream g ("adunare.out");
f>>A>>B;
S=A+B;
g<<S;
}