N = int(input()) for i in range(N): if (N+1)%15==0: print("FizzBuzz") elif (N+1)%3==0: print("Fizz") elif (N+1)%5==0: print("Buzz") else : print(N+1)