program Fib { int fib (int n) { if(n >= 1 && n <= 2) { return n; } else { return fib(n-2) + fib(n-1); } } void main () { print(fib(20)); } }