Problem2198--ABC156A - Beginner

2198: ABC156A - Beginner

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

Description

Problem Statement

Takahashi is a member of a programming competition site, ButCoder.
Each member of ButCoder is assigned two values: Inner Rating and Displayed Rating.
The Displayed Rating of a member is equal to their Inner Rating if the member has participated in 1010 or more contests. Otherwise, the Displayed Rating will be their Inner Rating minus 100 \times (10 - K)100×(10K) when the member has participated in KK contests.
Takahashi has participated in NN contests, and his Displayed Rating is RR. Find his Inner Rating.

Constraints

  • All values in input are integers.
  • 1 \leq N \leq 1001N100
  • 0 \leq R \leq 41110R4111

Input

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

Output

Print his Inner Rating.

Sample Input Copy

2 2919

Sample Output Copy

3719

Source/Category