N = int(input())
for i in range(N - 1):
    print(")" * i + "(" * (i + 1))
print(")" * (N - 1))