收起
l=list(map(int,input().split(','))) for d in l: for i in range(2,int(d**0.5)+1): if d%i==0: break else: if d>1: print(d,end=' ')
报告相同问题?