Aliens on the planet Hex have sixteen fingers. As a result, they have developed a system of writing numbers with sixteen digits (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F, in ascending order). Like the decimal system that we use, a number is written as a sequence of digits, and the value of a number is determined by the following rules:
The value of a single-digit number is just the value of that digit.
The value of number a consisting of a number b followed by a digit d is the value of b multiplied by a fixed base, plus the value of d. In our decimal system, the base is ten, whereas in the system used by the Hex aliens, the base is sixteen.
Still other planets have other aliens with different numbers of fingers. These aliens use the same rules for writing numbers, but each uses a different base.
You have the important job of promoting universal peace by improving communication among all of these aliens. Specifically, you are to write a program that translates numbers written by one alien into numbers that can be understood by a different alien.
For each line of input, output a line containing a single number, equal in value to z, but written in base y.