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