import math N = int(input()) print(math.factorial(2 * N) / math.factorial(N + 1) / math.factorial(N))