import sys input = sys.stdin.buffer.readline a, b = map(int, input().split()) n = b // a + (1 if b % a != 0 else 0) print(n)