#P1563. 【PY】【for】约数

【PY】【for】约数

问题说明

请设计一个程序来输出一个整数n的所有约数。(1<=n<=100000)

输入格式

整数n

输出格式

n的所有约数(用空格隔开)

6
1 2 3 6

来源/分类

⭐ Python