#【カタラン数】 import math N = int(input()) def f(n): return math.factorial(2*n)//(math.factorial(n)*math.factorial(n + 1)) print(f(N))