N = input() if int(N, 4) % 15 == 0: print("FizzBuzz") elif int(N, 4) % 3 == 0: print("Fizz") elif int(N, 4) % 5 == 0: print("Buzz") else: print(N)