a and b are given numbers. Check if one of these numbers is a divisor of the other.
The first line contains a natural number a(1≤a≤1000).
The second line contains a natural number b(1≤b≤1000).
If it is a divisor, output True, otherwise output False in a single line.
2 4
True
5 6
False
6 3
True
Login to be able to submit.