maekawatoshiki
4/11/2016 - 10:15 AM

fibo.rb

def fibo x
	if x < 2
		1
	else
		fibo(x - 1) + fibo(x - 2)
	end
end

puts fibo 40