Given two numbers
n
and
m
(
n
>=
m
). Write a program that prints all numbers from
n
to
m
inclusive, in increments of
-3
.
Input
The program receives as input two numbers
n
and
m
(
n
>=
m
), each number in on a separate line.
Imprint
Output all numbers from the range from
n
to
m
. Print each number on a separate line.
Examples
# |
Input |
Output |
1 |
10
1
|
10
7
4
1
|