import sequtils, strutils var a, b: int (a, b) = stdin.readLine.split.map parseInt if b mod a == 0: echo b div a else: echo 1 + b div a