#abc087a. [abc087_a]Buying Sweets
[abc087_a]Buying Sweets
Problem Statement
You went shopping to buy cakes and donuts with yen (the currency of Japan).
First, you bought one cake for yen at a cake shop. Then, you bought as many donuts as possible for yen each, at a donut shop.
How much do you have left after shopping?
Constraints
- , and are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the amount you have left after shopping.
Sample Input 1
1234
150
100
Sample Output 1
84
You have yen left after buying a cake. With this amount, you can buy donuts, after which you have yen left.
Sample Input 2
1000
108
108
Sample Output 2
28
Sample Input 3
579
123
456
Sample Output 3
0
Sample Input 4
7477
549
593
Sample Output 4
405