a,b = map(int,input().split()) c = int(b/a) d = b%a if d != 0: c = c + 1 print(c)