A - B +/- A 解説 /

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

配点 : 100

問題文

正整数 A, B が与えられます。

AB の約数なら A + B を、そうでなければ B - A を出力してください。

制約

  • 入力は全て整数である。
  • 1 \leq A \leq B \leq 20

入力

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

A B

出力

AB の約数なら A + B を、そうでなければ B - A を出力せよ。


入力例 1

4 12

出力例 1

16

412 の約数なので 4 + 12 = 16 を出力します。


入力例 2

8 20

出力例 2

12

入力例 3

1 1

出力例 3

2

11 の約数です。

Score : 100 points

Problem Statement

You are given positive integers A and B.

If A is a divisor of B, print A + B; otherwise, print B - A.

Constraints

  • All values in input are integers.
  • 1 \leq A \leq B \leq 20

Input

Input is given from Standard Input in the following format:

A B

Output

If A is a divisor of B, print A + B; otherwise, print B - A.


Sample Input 1

4 12

Sample Output 1

16

As 4 is a divisor of 12, 4 + 12 = 16 should be printed.


Sample Input 2

8 20

Sample Output 2

12

Sample Input 3

1 1

Sample Output 3

2

1 is a divisor of 1.