i=int(input()) if i%15: print("FizzBuzz") elif i%3: print("Fizz") elif i%5: print("Buzz") else: print(i)