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