Given two numbers
n
and
m
(
n
<=
m
). Write a program that prints all numbers between
n
and
m
inclusive, prefixing each number with the word
number
.
Input
The program receives as input two numbers
n
and
m
(
n
<=
m
), each number in on a separate line.
Imprint
Print all numbers from
n
to
m
, one number per line, prefixing each number with the word
number
.
Examples
# |
Input |
Output |
1 |
2
5
|
number 2
number 3
number 4
number 5
|