#abc173a. [abc173_a]Payment
[abc173_a]Payment
Problem Statement
We will buy a product for yen (the currency of Japan) at a shop.
If we use only -yen bills to pay the price, how much change will we receive?
Assume we use the minimum number of bills required.
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the amount of change as an integer.
Sample Input 1
1900
Sample Output 1
100
We will use two -yen bills to pay the price and receive yen in change.
Sample Input 2
3000
Sample Output 2
0
We can pay the exact price.