Problem O: 满足条件的数累加(循环语句、if语句、整除求余运算)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:19 Solved:15

Description

将正整数 m 和 n 之间(包括 m 和 n)能被 17 整除的数累加,其中,0 < m < n < 1000。

Input

一行,包含两个整数m和n,其间,以一个空格间隔。

Output

输出一行,包含一个整数,表示累加的结果。

Sample Input Copy

50 85

Sample Output Copy

204

Source/Category