#!/bin/python3 import sys import math def ncr(n, r): return math.factorial(n)/(math.factorial(r)*math.factorial(n-r)) n = int(input().strip()) m = list(map(int, input().strip().split(' '))) # your code goes here print (int(ncr(n,1)+1))