101180: [AtCoder]ABC118 A - B +/- A

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

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$.

Input

题意翻译

给您正整数 $A$ 和 $B$。 如果 $A$ 是 $B$ 的除数,则打印 $A + B$; 否则,打印 $B -A$。

加入题单

算法标签: