tens = int(input()) if tens % 33 == 0: print("FizzBuzz") elif tens % 3 == 0: print("Fizz") elif tens % 11 == 0: print("Buzz") else: print(tens)