시간 제한
메모리 제한
The factorial function, n! is defined thus for n a non-negative integer:
0! = 1n! = n * (n-1)! (n > 0)We say that a divides b if there exists an integer k such that
k*a = bThe input to your program consists of several lines, each containing two non-negative integers, n and m, both less than 2^31.
For each input line, output a line stating whether or not m divides n!, in the format shown below.
0! = 1n! = n * (n-1)! (n > 0)k*a = b