#abc118a. [abc118_a]B +/- A
[abc118_a]B +/- A
Problem Statement
You are given positive integers and .
If is a divisor of , print ; otherwise, print .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
If is a divisor of , print ; otherwise, print .
Sample Input 1
4 12
Sample Output 1
16
As is a divisor of , should be printed.
Sample Input 2
8 20
Sample Output 2
12
Sample Input 3
1 1
Sample Output 3
2
is a divisor of .