Problem1044--区间和

1044: 区间和

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

Description

输入两个整数m和n,输出数列[m, n](m<=n)或[n, m](m>n)的和。

Input

输入两个整数m、n,用空格隔开。

Output

输出一个正整数,即区间各项和。

Sample Input Copy

4 6
6 4

Sample Output Copy

15
15

Source/Category

admin