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