input_line = input().split(" ") a = int(input_line[0]) b = int(input_line[1]) answer = b/a if b%a != 0: answer += 1 print(int(answer))