def main(): S, F = map(int, input().split()) ans = F // S + 1 print(ans) main()