Cod sursa(job #94923)
| Utilizator | Data | 26 octombrie 2007 15:55:40 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
int main();
int a,b;
ifstream in("adunare.in");
in>>a>>b;
in.close();
ofstream out("adunare.out");
out<<a+b;
out.close();
return 0;
}
