a,b = map(int,input().split()) steps = b // a + 1 if b % a else b // a print(steps)