x = input().split() y = int(x[0]) z = int(x[1]) set = int(z / y) if z%y != 0: set = set + 1 print(set)