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