def walk(A, B): return (A+B-1)//A A, B= map(int, input().split()) result= walk(A, B) print(result)