N=int(input()) m=10**9+7 r=1 p=pow(2,m-2,m) for i in range(N, 0, -1): r*=(2*i*(2*i-1)*p)%m r%=m print(r)