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