There is a snail on the ground. It wants to climb to the top of a wooden pole with a height of
Input Specification
The first and only line of input contains three integers separated by a single space:
Output Specification
The first and only line of output must contain the number of days that the snail needs to reach the top.
Sample Input 1
Copy
2 1 5
Sample Output 1
Copy
4
Sample Input 2
Copy
5 1 6
Sample Output 2
Copy
2
Sample Input 3
Copy
100 99 1000000000
Sample Output 3
Copy
999999901
Comments