# 標準入力から一行分を読み出し、文字列として格納する。 i = input() for i in range(0,i,1): if i%3 ==0: print("fizz") elif i%5 ==0: print("Buzz") else: print(i)