# coding:utf-8 a, b = map(int, input().split()) walk = a km = 0 while True: km += a if km >= b: break else: continue print(km // walk)