For rotations around the origin, use a rotation matrix.
In your case this matrix would be of the form:
$$A = \begin{bmatrix}\cos(35°) & -\sin(35°)\\\sin(35°) & \cos(35°)\end{bmatrix}$$
As you want to rotate $P := (100, 10)$ around $(10,10)$, you'll need to translate $P$ by $(-10,-10)$ first.
- translate $P := (100, 10)$ to $(90, 0)$
- rotation (i.e. multiplication with $A$) yields $(90 \cdot \cos(35°), 90 \cdot \sin(35°))$
- translate back to $(90 \cdot \cos(35°) + 10, 90 \cdot \sin(35°) + 10)$, which is your result.
Using homogenous coordinates, you could also combine the steps above into a single matrix multiplication.