#include using namespace std; int main() { int n; cin >> n; for(int i = 0; i < n - 1; i++) { cout << '('; } cout << endl; for(int i = 1; i < n; i++) { for(int j = 0; j < i; j++) { cout << ')'; } for(int j = 0; j < i - 1; j++) { cout << '('; } cout << endl; } }