Problem2232--AtCoder Quiz 2

2232: AtCoder Quiz 2

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

Time Limit: 2 sec / Memory Limit: 1024 MB

Score : 100100 points

Problem Statement

In the Kingdom of AtCoder, there is a standardized test of competitive programming proficiency.
An examinee will get a score out of 100100 and obtain a rank according to the score, as follows:
  • Novice, for a score not less than 00 but less than 4040;
  • Intermediate, for a score not less than 4040 but less than 7070;
  • Advanced, for a score not less than 7070 but less than 9090;
  • Expert, for a score not less than 9090.
Takahashi took this test and got XX points.
Find the minimum number of extra points needed to go up one rank higher. If, however, his rank was Expert, print expert, as there is no higher rank than that.

Constraints

  • 0 \leq X \leq 1000X100
  • XX is an integer.

Input

Input is given from Standard Input in the following format:
XX

Output

Print the answer.

Sample Input Copy

56

Sample Output Copy

14

HINT

He got 5656 points and was certified as Intermediate. In order to reach the next rank of Advanced, he needs at least 1414 more points.

Source/Category