| Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб. Prepared by Ibrahim Mesecan. 
Сложность Альфа
 
 
 Sum of the numbers from a to b
 Question:  Write a program that calculates sum of the numbers from a to b with the steps of k.
 Input specification  You will be given three integer numbers (a, b, k)
where 0 ≤ a < b ≤ 30000 and  0 < k ≤ 100.
 Output specification  Show one integer (sum of the numbers from a to b with the steps k).
 
 
| Sample Input I 
 
  21 24 1 
 | Sample Input II 
 
  237 1786 50
 |  
| Sample Output I 
 
  90
 | Sample Output II 
 
  30597
 |  Для отправки решений необходимо выполнить вход.
 
 
 |