Skip to content

Instantly share code, notes, and snippets.

@ponnhide
Last active December 15, 2015 22:29
Show Gist options
  • Save ponnhide/5333819 to your computer and use it in GitHub Desktop.
Save ponnhide/5333819 to your computer and use it in GitHub Desktop.
num = input()
for i in range(1,num + 1):
if i % 15 == 0:
print 'FizzBuzz'
elif i % 5 == 0:
print 'Buzz'
elif i % 3 == 0:
print 'Fizz'
else:
print i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment