Given a fat matrix $A \in \mathbb{R}^{m \times n}$ (where $m<n$) with singular values $\sigma_1, \dots, \sigma_m$, can I express the singular values $\tilde{\sigma}_1, \dots, \tilde{\sigma}_{m+n}$ of the following block lower triangular matrix
$$T = \begin{pmatrix} I & 0 \\ A & I \end{pmatrix}$$
in terms of the singular values of $A$? Or can I give some upper bounds on the singular values of $T$?
Kind regards and thanks in advance!
EDIT:
I think I got a solution myself: on a standard textbook on matrix analysis I found the property $ \sigma_i(C) - \sigma_i(B) \leq \Vert C - B \Vert $ for all $i$ with $A,B \in \mathbb{R}^{m \times n}$.
Now, defining $C = T$ and $$ B = \begin{pmatrix} 0 & 0 \\ A & 0 \end{pmatrix} $$ we have $C - B = I$ and $\sigma_{max}(B) = \sigma_{max}(A)$. Since $I$ has norm 1, then, we have
$$ \sigma_{max}(T) = \sigma_{max}(C) \leq 1 + \sigma_{max}(A).$$
Am I forgetting anything? It looks too beautiful to be true.