11094: 因式分解

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:1 Solved:0

Description

输入一个正整数并因式分解,输出分解等式。如输入60,则输出:60=2*2*3*5

Input

输入一正整数n(n在int范围内)。

Output

输出其因式分解.

Sample Input Copy

60

Sample Output Copy

60=2*2*3*5

HINT