list = input().split() a = int(list[0]) b = int(list[1]) if b % a != 0: print (round((b/a + 1))) else: print (round((b/a)))