Problem B
Slatkisi
Mirko buys a lot of candy in the candy shop. He cannot
always pay the exact amount so the shopkeeper and he have an
agreement. He tells the shopkeeper the smallest bill he has,
and she rounds his amount to the nearest number he can pay. For
example, if the smallest bill Mirko has is a hundred bill, and
he wants to buy
Lately, Mirko suspects the shoopkeeper is trying to cheat
him. He asked you to help him. Write a program that will help
him. His mother only gives Mirko
Input
The first and only line of input contains two integers,
Output
The first and only line of output should contain one
integer,
Sample Input 1 | Sample Output 1 |
---|---|
184 1 |
180 |
Sample Input 2 | Sample Output 2 |
---|---|
123450995 1 |
123451000 |
Sample Input 3 | Sample Output 3 |
---|---|
182 2 |
200 |