num = input().rstrip().split(" ") wide = int(num[0]) dist = int(num[1]) i = 0 while wide * i < dist: i = i + 1 print(i)