a,b = map(int,input().split()) if a%b == 0: hosu = b//a else: hosu = b//a + 1 print(hosu)