def main(): a, b = map(int, input().split()) if b % a == 0: return b // a else: return 1 + (b // a) print(main())