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