You are given a string $S = S_1 S_2 S_3 \dots S_{|S|}$ consisting of uppercase and lowercase English letters, `(`, and `)`.
The parentheses in the string $S$ are properly matched.
Repeat the following operation until no more operations can be performed:
* First, select one pair of integers $(l, r)$ that satisfies all of the following conditions:
* $l < r$
* $S_l =$ `(`
* $S_r =$ `)`
* Each of the characters $S_{l+1}, S_{l+2}, \dots, S_{r-1}$ is an uppercase or lowercase English letter.
* Let $T = \overline{S_{r-1} S_{r-2} \dots S_{l+1}}$.
* Here, $\overline{x}$ denotes the string obtained by toggling the case of each character in $x$ (uppercase to lowercase and vice versa).
* Then, delete the $l$\-th through $r$\-th characters of $S$ and insert $T$ at the position where the deletion occurred.
Refer to the sample inputs and outputs for clarification.
It can be proved that it is possible to remove all `(`s and `)`s from the string using the above operations, and the final string is independent of how and in what order the operations are performed.
Determine the final string.
What does it mean that the parentheses in $S$ are properly matched? First, a correct parenthesis sequence is defined as follows:
* A correct parenthesis sequence is a string that satisfies one of the following conditions:
* It is an empty string.
* There exists a correct parenthesis sequence $A$, and the string is formed by concatenating `(`, $A$, `)` in this order.
* There exist non-empty correct parenthesis sequences $A$ and $B$, and the string is formed by concatenating $A$ and $B$ in this order.
The parentheses in $S$ are properly matched if and only if the `(`s and `)`s extracted from $S$ without changing the order form a correct parenthesis sequence.
## Constraints
* $1 \le |S| \le 5 \times 10^5$
* $S$ consists of uppercase and lowercase English letters, `(`, and `)`.
* The parentheses in $S$ are properly matched.
## Input
The input is given from Standard Input in the following format:
$S$
[samples]