Skip to content

Instantly share code, notes, and snippets.

@LevonHM
Created March 26, 2017 20:10
Show Gist options
  • Save LevonHM/7fc4e263d6c9a590881f842ccd2ea975 to your computer and use it in GitHub Desktop.
Save LevonHM/7fc4e263d6c9a590881f842ccd2ea975 to your computer and use it in GitHub Desktop.
cracklepop 100
for i in range(1,101):
if i % 3==0 and i % 5 == 0:
print("CracklePop")
elif i % 3 == 0:0
print ("Crackle")
elif i % 5 == 0:
print ("Pop")
else:
print(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment