import random
n=random.randint(50,100)
a=[]
for i in range(2,n+1):
while n%i==0:
a.append(i)
n=n//i
print(a)