Adapted by Neilor Tonin, URI Brazil
Write an program that reads two numbers X and Y (X < Y). After this, show a sequence of 1 to y, passing to the next line to each X numbers.
The input contains two integer numbers X (1 < X < 20) and Y (X < Y < 100000).
Each sequence must be printed in one line, with a blank space between each number, like the following example.
Input Sample | Output Sample |
3 99 |
1 2 3 |