You can put this solution on YOUR website! what is the sum of the integers from -10 to 50?
------------
-10 to 50 inclusive --> 61 integers
The center integer is (-10 + 50)/2 = 20
View it as 30 pairs + 20
----
For each pair,
-10 + 50 = 40
-9 + 49 = 40
etc
--> 30*40 + 20
= 1220