(define (fib n) (define (fibaux v l c) (if (= c n) v (fibaux (+ v l) v (+ c 1)))) (fibaux 0 1 0)) (write (fib (read)))
500
139423224561697880139724382870407283950070256587697307264108962948325571622863290691557658876222521294125
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!