Problem9984--ABC319 —— A - Legendary Players

9984: ABC319 —— A - Legendary Players

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

In AtCoder, the top $10$ rated players' usernames are displayed with a gold crown, and the top-rated player's username is displayed with a platinum crown.

At the start of this contest, the usernames and ratings of the top $10$ rated players in the algorithm category are as follows:

tourist 3858
ksun48 3679
Benq 3658
Um_nik 3648
apiad 3638
Stonefeang 3630
ecnerwala 3613
mnbvmar 3555
newbiedmy 3516
semiexp 3481

You are given the username $S$ of one of these players. Print that player's rating.

Input

The input is given from Standard Input in the following format:

```
$S$
```

Output

Print the rating of the corresponding player in one line.

Constraints

-   $S$ is equal to one of the usernames of the top $10$ rated players in the algorithm category.

Sample 1 Input

tourist

Sample 1 Output

3858
At the start of this contest, the rating of  tourist in the algorithm category is 3858.

Sample 2 Input

semiexp

Sample 2 Output

3481
At the start of this contest, the rating of  semiexp in the algorithm category is 3481.

Source/Category