#ABC118A. [ABC118A] B +/- A

[ABC118A] B +/- A

Score : 100100 points

Problem Statement

You are given positive integers AA and BB.

If AA is a divisor of BB, print A+BA + B; otherwise, print BAB - A.

Constraints

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

Input

Input is given from Standard Input in the following format:

AA BB

Output

If AA is a divisor of BB, print A+BA + B; otherwise, print BAB - A.

Sample Input 1

4 12

Sample Output 1

16

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

Sample Input 2

8 20

Sample Output 2

12

Sample Input 3

1 1

Sample Output 3

2

11 is a divisor of 11.