#!/usr/bin/env python3 import sys def main(): N = int(input()) print(1 if N % 2 else N // 2 + 1) if __name__ == '__main__': main()