N = int(input()) F = 1 for i in range(1, 2*N+1): F *= i for i in range(1, N+1): F //= i for i in range(1, N+2): F //= i print(F)