#K35202. Bib Number Generator
Bib Number Generator
Bib Number Generator
Given the number of participants, your task is to generate a sequence of bib numbers in ascending order. The bib numbers start at 1 and continue sequentially up to n. This problem tests simple iteration and output formatting.
Input: A single positive integer n representing the total number of participants.
Output: A single line containing the bib numbers from 1 to n in increasing order, separated by a single space.
Note: Consider that n is guaranteed to be at least 1.
inputFormat
The input consists of one line containing an integer n.
n
where n is the total number of participants.
outputFormat
The output consists of a single line containing the sequence of bib numbers from 1 to n, separated by a single space.
1 2 3 ... n## sample
1
1