import math def main(): a, b = map(int, input().split(' ')) c = math.ceil(b / a) print(c) if __name__ == '__main__': main()