def walk(a,b,c): if (a*c) >= b: return c return walk(a,b,c+1) a,b = map(int,input().split(' ')) print(walk(a,b,1))