f=lambda n:0**n*'()'or'('+f(n//2)+n%2%n*'()'+')' while 1:print(f(int(input())))