a = list(map(int, input().split())) if a[1] % a[0] == 0: print(int(a[1]/a[0])) else: print((int(a[1]/a[0]))+1)