read a
read b

d=$(($b/$a))
m=$(($b%$a))

if [ $m -gt 0 ]
then
  d=$(($d+1))
fi

echo $d