Rules of FizzBuzz
Players generally sit in a circle. The player designated to go first says the number "1", and each player thenceforth counts one number in turn. However, any number divisible by three is replaced by the word fizz and any number divisible by five by the word buzz. Numbers divisible by 15 become fizz buzz.
My attempt
x = 0
if x % 3:
print("fizz")
elif x % 5:
print("buzz")
else:
x+=1