projekt pyrmkje
01
HEIMAT
02
KUNST
03
FREUNDE
04
RUBY
05
BUCH
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