CF808A.Lucky Year
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Apart from having lots of holidays throughout the year, residents of Berland also have whole lucky years. Year is considered lucky if it has no more than 1 non-zero digit in its number. So years 100, 40000, 5 are lucky and 12, 3001 and 12345 are not.
You are given current year in Berland. Your task is to find how long will residents of Berland wait till the next lucky year.
输入格式
The first line contains integer number n ( 1<=n<=109 ) — current year in Berland.
输出格式
Output amount of years from the current year to the next lucky one.
输入输出样例
输入#1
4
输出#1
1
输入#2
201
输出#2
99
输入#3
4000
输出#3
1000
说明/提示
In the first example next lucky year is 5. In the second one — 300. In the third — 5000.