F004B. Stable products

The product of xx by yy is stable if the digits of xx and yy on one hand, and the digits of x*yx * y on the other hand, are the same ones.

For instance, the product 875*650=568750875 * 650 = 568750 is stable because in the both sides there is a 0, two 5, a 6, a 7 and a 8.

This property can be extended to other bases different of 10. For instance, the product of 3 by 53 is stable in base 2: 11*110101=1001111111 * 110101 = 10011111 because in both sides there are two 0 and six 1.

Your task is to write a program that, given a sequence of pairs xx and yy, prints which bases between 2 and 16 (both included) the product x*yx * y is stable for.

To solve this problem, you must implement and use the function

    bool same_digits(int x, int y, int b);

that indicates if, in base bb (2b162\le b\le 16), xx and yy in one hand, and x*yx * y in the other one, have the same digits.

You must implement and use also the procedure

    void print(int n, int b);

that prints nn in base bb in the screen (just like that, without spaces nor line feeds).

Input

The input is a sequence of pairs of natural numbers xx and yy. x1x \ge 1, y1y \ge 1, x*and109x * and \le 10^9 are fulfilled. You can assume this information as a precondition of your procedures.

Output

For each pair xx and yy, print which bases the product x*yx * y is stable for. If there is not any base, print it. It must print a line feed after the output of each case. Follow the format of the instance.

Observation

If you do tests with random numbers and your program do not find any solution, do not worry: most products are not stable.

Problem information

Author: Unknown
Translator: Carlos Molina

Generation: 2026-01-25T12:19:52.933Z

© Jutge.org, 2006–2026.
https://jutge.org