I'm currently writing something where I need to concatenate tuples. To be more precise, I need to split tuples. I have a tuple $\phi$ of $n$ elements and want to split it into 3 consecutive parts $r$, $s$, and $t$. In uni, the professors would've written $$(\phi) = (r, s, t)$$ and they wouldn't call the tuple $\phi$ but $(\phi)$.
However, I don't like this vague notation, especially because it's important that $(0, (1, 2)) \neq (0, 1, 2)$ in quite some cases and I like things to be unambiguous.
Is there a way to make the concatenation more explicit?