a,b = map(int,input().split()) if type(b/a) == float: answer = b//a+1 else: answer = b//a print(answer)