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