练习专区

今天的一小步就是明天的一大步
Problem 1704 分解
Accepted: 5   Total Submit: 5
Time Limit: 1000ms   Memory Limit: 30720KB
Description
给你一个数a,请你编程找出积为a的所有可能。 例如: 6=1*6=2*3=3*2=6*1。
Input
输入有若干行,每行有1个正整数a。
Output
对于每一个a,输出所有可能的积。 要求第一个因数要从小到大。
Sample Input
3
10
Sample Output
3=1*3=3*1
10=1*10=2*5=5*2=10*1
Hint
提交     返回