#abc182a. [abc182_a]twiblr

[abc182_a]twiblr

Problem Statement

You are on a social networking site called twiblr.
In twiblr, you can follow at most 2,times,(2\\,\\times\\,( the number of users following you ),+,100)\\,+\\,100 users.
You are currently following BB users, and AA users are following you.
At most, how many extra users can you follow now?

Constraints

  • 0leA,Ble100000 \\le A, B \\le 10000
  • Ble2timesA+100B \\le 2 \\times A + 100
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

AA BB

Output

Print the maximum number of extra users you can follow now.


Sample Input 1

200 300

Sample Output 1

200

You can follow at most 2times200+100=5002 \\times 200 + 100 = 500 users, that is, 200200 more users than you are following now.


Sample Input 2

10000 0

Sample Output 2

20100