| Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб. Question by Ibrahim Mesecan. 
Сложность Альфа
 
 
 Show numbers from m down to n
 Question:  Write a program that shows the numbers from m down to n with the steps of k.
 Input specification  You will be given three integer numbers (m, n, k)
where 0 ≤ n < m ≤ 30000 and  0 < k ≤ 100.
 Output specification  Show the number series separated by spaces.
 
 
| Sample Input I 
 
  50 26 4 
 | Sample Input II 
 
  28 21 3
 |  
| Sample Output I 
 
  50 46 42 38 34 30 26    
 | Sample Output II 
 
  28 25 22
 |  Для отправки решений необходимо выполнить вход.
 
 
 |