projekt pyrmkje

fibonacci generator

n = gets
a,b = 0,1
i = 0
until i.to_i >= n.to_i
puts a
a,b,i = b,a+b,i+1
end