Gửi bài giải
Điểm:
1,00 (OI)
Giới hạn thời gian:
1.0s
Giới hạn bộ nhớ:
256M
Input:
stdin
Output:
stdout
Nguồn bài:
Dạng bài
Ngôn ngữ cho phép
C, C++, Java, Kotlin, Pascal, PyPy, Python, Scratch
Write a program that takes a positive integer ~n~ as input (where ~n≤10^3~).
Print a table of numbers with ~n~ rows, where each row contains numbers from ~1~ to ~n~.
Input
- One integer number ~n~ ~(n ≤ 10^{3})~.
Output
- Print ~n~ lines where each line contains numbers from ~1~ to ~n~, separated by a space.
Sample Input
3
Sample Output
1 2 3
1 2 3
1 2 3
Bình luận