I don't want to do the problem for you, but I'll do another one that illustrates the idea. Suppose that you're asked to compute the ith partial derivative of the function ##f:\mathbb R^3\to\mathbb R^3## defined by ##f(\mathbf x)=|\mathbf{x}|^2## for all ##\mathbf x\in\mathbb R^3##, would you know how? Sure you do. (If not, you will have to open up a calculus books and study partial derivatives again). I'll use the notation ##\mathbf x=(x_1,x_2,x_3)##.
\begin{align}
\frac{\partial f(\mathbf x)}{\partial x_i} &=\frac{\partial}{\partial x_i}|\mathbf x|^2 =\frac{\partial}{\partial x_i} \sum_{j=1}^3 x_j x_j = \frac{\partial}{\partial x_i} \left( x_1{}^2+x_2{}^2+x_3{}^2\right)\\
&=\frac{\partial}{\partial x_i}x_1{}^2 + \frac{\partial}{\partial x_i}x_2{}^2 + \frac{\partial}{\partial x_i}x_3{}^2.
\end{align}
If for example i=1, then the last two terms are obviously zero, and the first one is
$$\frac{\partial}{\partial x_1}x_1{}^2=2x_1.$$ If i=2 instead, you get the result ##2x_2## in a similar way, and if i=3, you end up with ##2x_3##. So regardless of what i is, you end up with ##2x_i##. This means that for all ##i\in\{1,2,3\}##, we have
$$\frac{\partial f(\mathbf x)}{\partial x_i}=2x_i.$$ That wasn't so hard, was it? You will find that your example isn't any harder, if you just do the summation explicitly the way I did here. The only difficulty in your problem is that the notation makes it hard to see that your problem is essentially the same as this one.
If we use a Kronecker delta (##\delta_{ij}## is 1 when i=j and 0 when i≠j), we can do the calculation without doing the summation explicitly (as I did in the last equality on the first line).
$$\frac{\partial}{\partial x_i} \sum_{j=1}^3 x_j x_j = \sum_{j=1}^3 \frac{\partial}{\partial x_i}\left(x_j x_j\right) =\sum_{j=1}^3 \left(\left(\frac{\partial}{\partial x_i}x_j\right)x_j + x_j\left( \frac{\partial}{\partial x_i}x_j\right)\right) =\sum_{j=1}^3 \left(\delta_{ij}x_j +x_j\delta_{ij}\right) =\sum_{j=1}^3 2\delta_{ij}x_j =2x_i.$$ When you use the summation convention, you can drop all the summation sigmas. What I'm saying is that when you do, it's going to be confusing if the dummy variable used for summation is the same symbol as the (not dummy) variable that indicates which partial derivative you're interested in.