Cod sursa(job #294394)
Utilizator | Data | 2 aprilie 2009 15:09:07 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream.h>
void main(){
fstream f("aduna.in",ios::in);
fstream g("aduna.out",ios::out);
long int a,b;
f>>a; f>>b;
g<<a+b;
f.close();
g.close();
}