def walk(a, b): return (a+b+1)//a a, b = map(int, input().split()) result= walk(a, b) print(result)