1041: The sum
[Creator : ]
Description
Given two integers S and E ( S <= E ), please output the sum of S + (S+1) + (S+2) + .... + E
Input
Two integers which is S and E
Output
One integer which is the sum
Sample Input Copy
1 100
Sample Output Copy
5050