Guest User

Untitled

a guest
Dec 14th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. for i in range(1,101):
  2. if i%3==0 and i%5==0:
  3. print("CracklePop")
  4. elif i%3==0:
  5. print("Crackle")
  6. elif i%5==0:
  7. print("Pop")
  8. else:
  9. print(i)
Add Comment
Please, Sign In to add comment