for x in xrange(1,101): if not x % 3: print "Fizz", if not x % 5: print "Buzz", if (x % 3) and (x % 5): print x else: print ""