For $$U_1, \cdots, U_n, W_1, \cdots, W_{n+1} \sim \text{DiscreteUniform}(0,1)$$ all i.i.d., I want to show: $$\mathbb{P}\left(\sum_{i=1}^n U_i \geq \sum_{i=1}^{n+1} W_i \right) = 0.5$$
I was trying to do this via induction, and conditioning $W_i$'s as it can only take values either 0 and 1. But, still, the equation was getting TOO messy and I could not proceed.
My intuition says, as Ws and Us has same PMFs, the only thing that affects to the probability calculation is $W_{n+1}$ which takes either 0 and 1 with equal probability.
Any easy proof for the assertion I made above?
P.S. I am adding probability plots for $n \in \{1, \cdots, 50\}$, where for each $n$, I executed 100000 Monte Carlo simulations (assuming this number is enough, I have not performed any standard error analysis).

Let $X = \sum\limits_{i=1}^{n} \left(1-U_i\right) +\sum\limits_{i=1}^{n+1} W_i = n-\sum\limits_{i=1}^{n}U_i + \sum\limits_{i=1}^{n+1} W_i$. It is clear that $X \sim Bin\left(2n+1, \frac12\right)$ and you are looking for the probability that $X \le n$. However, $X$ and $2n+1-X$ have the same distribution so
\begin{align} 2P\left(X\le n \right) &= P\left(X\le n\right) + P\left(2n+1-X\le n\right)\\ &= P\left(X\le n\right) + P\left(X\ge n+1\right) = 1. \end{align}
So the statement is true.