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