S,F = map(int,input().split()) if F > S: cnt = F // S print(cnt+1) else: print(1)