#include <bits/stdc++.h> using namespace std; int main( ) { int h,t=1; cin>>h; for(int i=1;i<=h;i++){ t+=2; } cout<<t; return 0; }