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