1573: 求整数段和
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:1
Solved:1
Description
给定两个整数A和B,输出从A到B的所有整数以及这些数的和。
Input
输入在一行中给出2个整数A和B,其中-100<=A<=B<=100,其间以空格分隔。
Output
输入在一行中给出2个整数A和B,其中-100<=A<=B<=100,其间以空格分隔。
Sample Input Copy
-3 8
Sample Output Copy
-3 -2 -1 0 1
2 3 4 5 6
7 8
Sum = 30