100 atcoder#ABC118A. [ABC118A] B +/- A
[ABC118A] B +/- A
Score : points
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 .
4 12
16
As is a divisor of , should be printed.
8 20
12
1 1
2
is a divisor of .