
题解:
#include<bits/stdc++.h>
using namespace std;
int feibo(int n){
if(n==2 || n==1) return 1;
return feibo(n-1) + feibo(n-2);
}
int main(){
int n;
cin>>n;
int res = feibo(n-1)*feibo(n+1) - (feibo(n)*feibo(n));
cout<<res<<endl;
}

#include<bits/stdc++.h>
using namespace std;
int feibo(int n){
if(n==2 || n==1) return 1;
return feibo(n-1) + feibo(n-2);
}
int main(){
int n;
cin>>n;
int res = feibo(n-1)*feibo(n+1) - (feibo(n)*feibo(n));
cout<<res<<endl;
}