Search posts, tags, users, and pages
Varjinth subramaniyan
blogger
def pri_num(num): a=[] b=2 while len(a)!= num: for i in range(2,b+1): if b%i==0: if i!=b: b+=1 break else: a.append(b) ...
No responses yet.