def Fib(n)
If n==0
Return 0
Elef n==1
Return 1
Else
Return fib(n-1)+ fib (n+1)
Print(enter the number)
n=int(input())
Print (the value of n is,fib(n))

Posted on by