for x in xrange(1,101): f=x if x%3==0: f="Fizz" if x%5==0: f="Buzz" if x%3==0 and x%5==0: f="FizzBuzz" print f