Print the first 5 positive integers in ascending order, with one number in each line.
Input
This program takes no input.
Output
Five lines. Line 1 has 1, line 2 has 2, and so on up to 5.
Example
1
2
3
4
5
Write a complete program: read the input with input() and print the result with print().
Input
Output
1
2
3
4
5