num = input().split() ans = int(int(num[1]) / int(num[0])) if ans != 0: print(int(ans)) else: print("1")