Guest User

Untitled

a guest
Aug 16th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. n=int(input("enter n numbers")) #input taken from user, with the type Integer
  2. for i in range(1,301): #1 is the start, and 301 is the last value
  3. if(i%7==0):
  4. print(i)
Add Comment
Please, Sign In to add comment