first = input() num = first.split() A = int(num[0]) B = int(num[1]) C = 1 while A*C <= B: C = C + 1 print(C)