#P9299. [CCC 2023 J1] Deliv-e-droid
[CCC 2023 J1] Deliv-e-droid
题目描述
In the game, Deliv-e-droid, a robot droid has to deliver packages while avoiding obstacles.
At the end of the game, the final score is calculated based on the following point system:
- Gain points for every package delivered.
- Lose points for every collision with an obstacle.
- Earn a bonus points if the number of packages delivered is greater than the number of collisions with obstacles.
Your job is to determine the final score at the end of a game.
输入格式
The input will consist of two lines. The first line will contain a non-negative integer ,representing the number of packages delivered. The second line will contain a non-negative integer ,representing the number of collisions with obstacles.
输出格式
The output will consist of a single integer ,representing the final score.
5
2
730
0
10
-100