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