N = int(input()) list1 = [] for i in range(N): p =random.choice(('Fizz', 'Buzz', 'fizzBuzz', i+1)) list1.append(p) for letter in list1: print(letter)