Saturday, January 19, 2019

URI 1146:: SOLUTION

URI Online Judge | 1146

Growing Sequences

Your program must read an integer X indefinited times (the program must stop when is equal to zero). For each print the sequence from 1 to X, with one space between each one of these numbers.

PS: Be carefull. Don't leave any space after the last number of each line, otherwise you'll get Presentation Error.

Input

The input file contains many integer numbers. The last one is zero.

Output

For each number N of the input file, one output line must be printed, from 1 to N like the following example. Be careful with blank spaces after the last line number.
Input SampleOutput Sample
5
10
3
0
1 2 3 4 5
1 2 3 4 5 6 7 8 9 10
1 2 3



[WAIT]
     First of all, think yourself that you have tried enough for the problem. If you did not please read the program once. REMEMBER one thing, just believe in yourself.....YOU CAN.....YOU KNOW....



See the ANSWER here...

No comments:

Post a Comment