CPython lite logoProblemsContests

22. Divisibility Check

 a and b are given numbers. Check if one of these numbers is a divisor of the other.


Input

The first line contains a natural number a(1a1000).

The second line contains a natural number b(1b1000).

Output

If it is a divisor, output True, otherwise output False in a single line.


Sample input 1

2
4

Sample output 1

True

Sample input 2

5 
6

Sample output 2

False

Sample input 3

6 
3

Sample output 3

True

Login to be able to submit.

BeginnerSimple
786 / 82
Solved / unsolved count
1.0 s / 512 MB
Limits