#P171. 练28.2 满足条件的数累加

练28.2 满足条件的数累加

Description

Write a program to calculate the sum of all numbers between positive integers mm and nn (inclusive) that are divisible by 17. Here, 0<m<n<10000 < m < n < 1000.

Input Format

A single line containing two integers mm and nn, separated by a space.

Output Format

Output a single line containing an integer representing the sum.

Sample

50 85
204