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