import "Prelude" fib :: Integer -> Integer fib x | x <= 2 = 1 | True = fib (x-1) + fib (x-2) main = fib 13 -- 233