Equation

Problem Statement

Solve the linear equation ax + b = 0 in integers.

Input

Two integers are entered: a and b.

Output

Output all solutions if their number is finite; output "NO" (without quotes) if there are none; output "INF" (without quotes) if there are infinitely many solutions.

Example

[{'input': '6\n-2', 'output': 'NO'}, {'input': '1\n1', 'output': '-1'}]