Print number triangle with n rows.
Write a complete program: read the input with input() and print the result with print().
input()
print()
# n=4 1 1 2 1 2 3 1 2 3 4
Input
4
Output
1 1 2 1 2 3 1 2 3 4