#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} //INSERT ABOVE HERE signed main(){ using M = Int; Int n; cin>>n; Int x=n/2,y=n-x; M ans=M(x+1)*M(y+1)-M(1); cout<<ans<<endl; return 0; }