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