for i in range(1,int(input())+1): if i % 15: print('FizzBuzz') elif i % 3: print('Fizz') elif i % 5: print('Buzz') else: print(i)