# File lib/plugins/fib_filter.rb, line 3
def fib(n)i=0;j=1;n.times{j=i+i=j};i end