Cod sursa(job #28167)

Utilizator Link512Horatiu ION Link512 Data 7 martie 2007 15:58:57
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;
}