# n个括号,m个嵌套
n, m = map(int, input().split())
# 任意构造即可,选最简单的
print('('*m+')'*m+'()'*(n-m))