20222210 - 父与子

n=int(input()) def fz(x,y):

if x>y:
    return 0
elif x==0:
    return 1
return fz(x-1,y)+fz(x,y-1)

print(fz(n,n))