#abc156a. [abc156_a]Beginner

[abc156_a]Beginner

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 100times(10K)100 \\times (10 - K) 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.
  • 1leqNleq1001 \\leq N \\leq 100
  • 0leqRleq41110 \\leq R \\leq 4111

Input

Input is given from Standard Input in the following format:

NN RR

Output

Print his Inner Rating.


Sample Input 1

2 2919

Sample Output 1

3719

Takahashi has participated in 22 contests, which is less than 1010, so his Displayed Rating is his Inner Rating minus 100times(102)=800100 \\times (10 - 2) = 800.

Thus, Takahashi's Inner Rating is 2919+800=37192919 + 800 = 3719.


Sample Input 2

22 3051

Sample Output 2

3051