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