import sequtils, strutils let ab = stdin.readLine.split.map parseInt a = ab[0] b = ab[1] if b mod a == 0: echo b div a else: echo 1 + b div a