407148: GYM102697 119 Division One
Description
You recently performed well in an online Codeforces contest, and you became part of "Division 1" on Codeforces. However, you're not sure that it will last. If you have a rating of 1900 or higher you're considered Division 1, otherwise, you're considered Division 2.
In each contest after you became Division 1, you didn't perform very well. Thus, your rating will decrease by 50 in each contest. Given your start rating, figure out how many contests it will take for you to become Division 2.
For example, if your start rating was $$$1970$$$, your rating would be $$$1920$$$ after the first contest, and after the second contest your rating would be $$$1870$$$, and you would become Division 2.
InputThe only line of input contains a single positive integer $$$n$$$: your rating after the recent good contest.
OutputOutput a single positive integer $$$c$$$: the number of contests that you can still do before you become Division 2.
ExamplesInput1970Output
2Input
2035Output
3Input
3549Output
33