1113: 整数分解成质因子

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:9 Solved:7

Description

输入一个正整数,把它分解成质因子相乘的形式。例如36=1*2*2*3*3,30=1*2*3*5,27=1*3*3*3。

Input

36

Output

36=1*2*2*3*3

Sample Input Copy

30

Sample Output Copy

30=1*2*3*5

Source/Category