#include int main(void) { int n; scanf("%d", &n); if(n % 2 == 0){ printf("%d\n", n / 2 + 1); } else{ printf("1\n"); } return 0; }