#2817. 因式分解

因式分解

因式分解

题目描述

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

输入说明

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

输出说明

输出其因式分解.

样例

输入

60

输出

60=2*2*3*5

提示