Cod sursa(job #625366)
Utilizator | Data | 24 octombrie 2011 14:28:20 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream.h>
int main()
{
long A ,B ;
fstream f("adunare.in",ios::in) ;
fstream g("adunare.out":ios::out) ;
f>>A>>B ;
g<<A+B ;
f.close() ;
g.close();
return 0;
}