Quickpaste.it
Create Paste
Top Pastes
Recent Pastes
Settings
Account
Untitled Paste
Created By
Anonymous
Expires never
Raw
Download
0
PRIME NUMBER GENERATION num = int( input( "Input the range : " )) for i in range(2, num): for x in range(2, i): if (i%x==0): break else: print(i) Output Input the range : 20 2 3 5 7 11 13 17 19