def fib(n) if (n <= 1) return n else return fib(n-1) + fib(n-2) end end ans = fib(ARGV[0].to_i) puts "#{ans}"