from math import comb N = int(input()) print(comb(2 * N, N) // (N + 1))