Pay the Bill
Very easy
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
After eating at the restaurant, Barysh asked for the bill. It turned out that Barysh's order cost n manats. Baris always give tips 10% of the bill when paying, but if the total amount is less than the full manat, Barysh adds the amount to the full manat, because he does not have a penny and does not want to pay by card.
For example, if the bill is 17 manats, then Barish thinks to give another 1.7 manats. The total amount is 18.7 manats. In this case, Baris pays AZN 19.
Input
One integer n (1 ≤ n ≤ 10^18
) - the bill received at the restaurant.
Output
Print the amount of money that Barysh will pay for the bill.
Examples
Input #1
Answer #1
Input #2
Answer #2
Input #3
Answer #3
Submissions 4K
Acceptance rate 32%