Quickpaste.it
Create Paste
Top Pastes
Recent Pastes
Settings
Account
Prime numbers
Created By
Anonymous
Expires never
Raw
Download
1
num = int( input( "Enter Input the range : " )) for i in range(2, num): for x in range(2, i): if (i%x==0): break else: print(i)