Accept a positive integer n as input and print the list of the first n positive integers as output.
Input
A single line containing the positive integer n.
Output
A single line: the list [1, 2, ..., n], printed exactly as Python prints a list.
Example
Input
5
Output
[1, 2, 3, 4, 5]
Write a complete program: read the input with input() and print the result with print().
Input
5
Output
[1, 2, 3, 4, 5]