Problem1166--分解质因式

1166: 分解质因式

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

将n分解质因式。

Input

只有一行n。(n<=100)

Output

只有一行,按从小到大的顺序输出。

Sample Input Copy

20

Sample Output Copy

20=2*2*5

HINT

【输入样例2】
 55

【输出样例2】
 55=5*11

Source/Category