def main(): S, F = map(int, input().split()) answer = S // F + 1 print(answer) if __name__ == '__main__': main()