• am stuck

Question related to mission Fizz Buzz

 

so i wrote my code like this it works in pycharm but not here am not sure how to restructure it am very new to coding so any help the right direction is truly appreciated.

number = input() fizzbuzz = number % 3 + (number % 5) if fizzbuzz <= 0: print ("Fizz Buzz") elif number % 3 == 0: print('Fizz') elif number % 5 == 0: print('Buzz') else: print(number)