Move legacy systemscripts into scripts/display and scripts/setup. Rehome stray top-level tools into their domain folders. Archive narrow experiments and outdated codegrab leftovers. Remove empty legacy directories and stale root files. Expand macOS metadata ignores and update the README with the refined repository structure.
8 lines
231 B
Python
8 lines
231 B
Python
import primefac
|
|
import sys
|
|
|
|
# n = int( sys.argv[1] )
|
|
n=1547526036699919708490609738397251465827883560269494112135036895312456811185879551982265065963
|
|
factors = list( primefac.primefac(n) )
|
|
print '\n'.join(map(str, factors))
|