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