Answer:
green buisness
Explanation:
num = int(input("Enter a number: "))
i = 2
while num > 1:
if num % i == 0:
num = num / i
print(i, end=" ")
i += 1
I hope this helps!
nice letters