import math n = int(input()) def k(n): return math.factorial(2*n) // (math.factorial(n)*math.factorial(n+1)) print(k(n))