Today, Jessie discover a new way to encode her 4-digit passcode, which is transforming the passcode into 3 integers, and we called it the "magic factors."
For example, the 3 magic factors of a 4-digit passcode "1234," is
1*234 = 234,
12*34 = 408,
123*4 = 492.
Please help Jessie to find the magic factors in the above order.
Hint: Use / and % to obtain the quotient (商數) and the remainder (餘數), respectively.
A single integer represents the 4-digit passcode, each digit is a number from 1 to 9.
Output a single line containing three numbers, the magic factors of the passcode.
Each number is separated by a space.
Please make sure to output the magic factors in the order shown in the description.
Please remember to print "\n" at the end.