puts Array.new(gets.to_i){|i| i+=1 if i%15 == 0 next "FizzBuzz" end if i%3 == 0 next "Fizz" end if i%5 == 0 next "Buzz" end next i.to_s }