Bảng số tự nhiên 3

View as PDF



Problem types
Points: 100 Time limit: 1.0s Memory limit: 640M Input: stdin Output: stdout

Viết chương trình nhập vào một số nguyên dương \(n\) (\(n \leq 100\)). Hãy in ra bảng số có \(n\) dòng, dòng thứ \(i\) in ra \(i\) số tự nhiên liên tiếp bắt đầu từ số \(i\).

Input

  • Nhập số nguyên dương \(n\).

Output

  • Bảng số theo yêu cầu.

Example

Test 1

Input
4 
Output
1 
2 3 
3 4 5 
4 5 6 7

Comments

There are no comments at the moment.