a,b = map(int, raw_input().split()) ans = b / a if b % a != 0: ans += 1 print ans