from sys import stdin def main(): input = lambda: stdin.readline()[:-1] N = int(input()) if N % 2: print(1) else: print(N // 2 + 1) main()