A - Beginner 解説 /

実行時間制限: 2 sec / メモリ制限: 1024 MB

配点 : 100

問題文

高橋君はプログラミングコンテストサイト「ButCoder」の会員です。

ButCoder の会員には 2 つのレーティング 内部レーティング表示レーティング が割り当てられています。

表示レーティングは、その会員のコンテスト参加回数が 10 以上のときは内部レーティングに等しく、そうでないときは、会員のコンテスト参加回数を K として、内部レーティングから 100 \times (10 - K) を引いたものになります。

高橋君のコンテスト参加回数が N で表示レーティングが R であるとき、高橋君の内部レーティングを求めてください。

制約

  • 入力は全て整数である
  • 1 \leq N \leq 100
  • 0 \leq R \leq 4111

入力

入力は以下の形式で標準入力から与えられる。

N R

出力

高橋君の内部レーティングを出力せよ。


入力例 1

2 2919

出力例 1

3719

コンテスト参加回数が 10 より少ない 2 であるため、内部レーティングから 100 \times (10 - 2) = 800 を引いたものが高橋君の表示レーティングになっています。

よって高橋君の内部レーティングは 2919 + 800 = 3719 となります。


入力例 2

22 3051

出力例 2

3051

Score : 100 points

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 10 or more contests. Otherwise, the Displayed Rating will be their Inner Rating minus 100 \times (10 - K) when the member has participated in K contests.

Takahashi has participated in N contests, and his Displayed Rating is R. Find his Inner Rating.

Constraints

  • All values in input are integers.
  • 1 \leq N \leq 100
  • 0 \leq R \leq 4111

Input

Input is given from Standard Input in the following format:

N R

Output

Print his Inner Rating.


Sample Input 1

2 2919

Sample Output 1

3719

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

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


Sample Input 2

22 3051

Sample Output 2

3051