#include<iostream> using namespace std; int main() { int i,n,s; cin>>n; int w=0; for(i=1;i>=n;i++) { s=1/i; w=w+s; } w=w+1; cout<<w; return 0; }