a,b = map(int, input().split()) x = b / a if a>=b: x=1 else: x = -(-b//a) print (x)