A recursive relation: \[ x_{m+1} = x_m - (m + 1) \] with initial condition: \[ x_1 = -1 \]
Applying the recurrence relation:
Observation of the pattern yields: \[ x_n = - (1 + 2 + 3 + \dots + n) = -\frac{n(n+1)}{2} \]
Calculating: \[ x_{100} = -\frac{100 \times 101}{2} = -5050 \]
\(\boxed{-5050}\)