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