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~ (where ~n≤10^{3}~) as input.
Print a table with ~n~ rows, where each row contains ~n~ consecutive integers starting from ~i~, where ~i~ is the row number.
Input:
- A positive integer ~n~.
Output:
- Print the table of numbers as described.
Sample Input
4
Sample Output
1 2 3 4
2 3 4 5
3 4 5 6
4 5 6 7
Bình luận