Increase numbers - 1
Problem
The first line of input data contains the number N
(from 1 to 100).
Each of the following N
lines is written first with some integer (between 0 and 10000), then a space, and then some text (max 20 characters).
It is required to display information in the same format, increasing the number in each line (except the first, where the number N
is written) by 1.
Examples
# |
Input |
Output |
1 |
2
14 Start
42 Stop
|
2
15 Start
43 Stop
|