You are given an $H$\-by-$W$ matrix $A$.
The element at the $i$\-th row from the top and $j$\-th column from the left of $A$ is $A_{i,j}$.
Let $B$ be a $W$\-by-$H$ matrix whose element at the $i$\-th row from the top and $j$\-th column from the left equals $A_{j, i}$.
That is, $B$ is the transpose of $A$.
Print $B$.
## Constraints
* $1\leq H,W \leq 10^5$
* $H \times W \leq 10^5$
* $1 \leq A_{i,j} \leq 10^9$
* All values in input are integers.
## Input
Input is given from Standard Input in the following format:
$H$ $W$
$A_{1,1}$ $A_{1,2}$ $\ldots$ $A_{1,W}$
$A_{2,1}$ $A_{2,2}$ $\ldots$ $A_{2,W}$
$\vdots$
$A_{H,1}$ $A_{H,2}$ $\ldots$ $A_{H,W}$
[samples]