mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 07:34:41 +01:00
7 lines
155 B
Python
7 lines
155 B
Python
#!/usr/bin/env python
|
|
import prime
|
|
import sys
|
|
pq = prime.primefactors(int(sys.argv[1]))
|
|
sys.stdout.write(str(pq[0]) + " " + str(pq[1]))
|
|
sys.stdout.flush()
|