create dev channel
This commit is contained in:
12
zeta/py/completed/11653.py
Normal file
12
zeta/py/completed/11653.py
Normal file
@@ -0,0 +1,12 @@
|
||||
N = int(input())
|
||||
p = 2
|
||||
while N % p == 0:
|
||||
N //= p
|
||||
print(p)
|
||||
p += 1
|
||||
while N != 1:
|
||||
if N % p == 0:
|
||||
N //= p
|
||||
print(p)
|
||||
else:
|
||||
p += 2
|
||||
Reference in New Issue
Block a user