#DDCC2020QUALA. DDCC Finals

DDCC Finals

Score: 100100 points

Problem Statement

We held two competitions: Coding Contest and Robot Maneuver.

In each competition, the contestants taking the 33-rd, 22-nd, and 11-st places receive 100000100000, 200000200000, and 300000300000 yen (the currency of Japan), respectively. Furthermore, a contestant taking the first place in both competitions receives an additional 400000400000 yen.

DISCO-Kun took the XX-th place in Coding Contest and the YY-th place in Robot Maneuver. Find the total amount of money he earned.

Constraints

  • 1X2051 \leq X \leq 205
  • 1Y2051 \leq Y \leq 205
  • XX and YY are integers.

Input

Input is given from Standard Input in the following format:

XX YY

Output

Print the amount of money DISCO-Kun earned, as an integer.

1 1
1000000

In this case, he earned 300000300000 yen in Coding Contest and another 300000300000 yen in Robot Maneuver. Furthermore, as he won both competitions, he got an additional 400000400000 yen. In total, he made 300000+300000+400000=1000000300000 + 300000 + 400000 = 1000000 yen.

3 101
100000

In this case, he earned 100000100000 yen in Coding Contest.

4 4
0

In this case, unfortunately, he was the highest-ranked contestant without prize money in both competitions.