You are on page 1of 1

n = 20

i = 2

while i * i < n:
while n%i == 0:
n = n / i
i = i + 1

print (n)

You might also like