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