Cod sursa(job #28165)
Utilizator | Data | 7 martie 2007 15:56:02 | |
---|---|---|---|
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 fin("aplusb.in");
fin>>a>>b;
fin.close();
ofstream fout("aplusb.out");
fout<<a+b;
fout.close();
return 0;
}