A - DDCC Finals Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点: 100

問題文

「コード部門」「装置実装部門」の 2 つの部門で競技が行われました.
各競技において,3 位の選手は 100000 円,2 位の選手は 200000 円,1 位の選手は 300000 円の賞金を獲得します.また,コード部門と装置実装部門の両方で 1 位となった選手は,さらに 400000 円の賞金を獲得します.

DISCO 君はコード部門で X 位,装置実装部門で Y 位となりました.
彼が得られる賞金額の合計を求めてください.

制約

  • 1 \leq X \leq 205
  • 1 \leq Y \leq 205
  • X, Y は整数である.

入力

入力は以下の形式で標準入力から与えられます.

X Y

出力

DISCO 君が得られる賞金額の合計を,整数で出力してください.


入力例 1

1 1

出力例 1

1000000

この場合,DISCO 君はコード部門で 300000 円,装置実装部門で 300000 円を獲得します.また,両方の競技で 1 位となったのでさらに 400000 円を獲得します.
合計で,300000 + 300000 + 400000 = 1000000 円を獲得することになります.


入力例 2

3 101

出力例 2

100000

この場合,DISCO 君はコード部門で 100000 円を獲得します.


入力例 3

4 4

出力例 3

0

この場合,残念ながら,DISCO 君は両方の競技において次点で賞金を獲得できませんでした.

Score: 100 points

Problem Statement

We held two competitions: Coding Contest and Robot Maneuver.

In each competition, the contestants taking the 3-rd, 2-nd, and 1-st places receive 100000, 200000, and 300000 yen (the currency of Japan), respectively. Furthermore, a contestant taking the first place in both competitions receives an additional 400000 yen.

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

Constraints

  • 1 \leq X \leq 205
  • 1 \leq Y \leq 205
  • X and Y are integers.

Input

Input is given from Standard Input in the following format:

X Y

Output

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


Sample Input 1

1 1

Sample Output 1

1000000

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


Sample Input 2

3 101

Sample Output 2

100000

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


Sample Input 3

4 4

Sample Output 3

0

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