program ifthenelse; declare num:integer; begin read(num); if num=0 then write(0); else write(num); end; end ifthenelse.