Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
kougakubu /
htdocs /
submit /
114533 /
Delete
Unzip
Name
Size
Permission
Date
Action
a.py
305
B
-rwxr-xr-x
2024-08-27 23:20
submit.txt
15
B
-rwxr-xr-x
2024-08-27 23:20
submit_info.txt
973
B
-rwxr-xr-x
2024-08-27 23:20
Save
Rename
def prime(n): a=[] while n%57==0: a.append(57) n//=57 while n%2==0: a.append(2) n//=2 p=3 while p*p<=n: if n%p==0: a.append(p) n//=p else: p+=2 if n!=1: a.append(n) return sorted(a) print(" ".join(map(str,prime(int(input())))))