Problem1041--The sum

1041: The sum

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

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

Source/Category