-->
当前位置:首页 > 题库

PROGRAMMING:Output upper triangular digital array

Luz5年前 (2021-05-10)题库387
This problem requires the preparation of procedures, output n lines from the designated number of the upper left triangle digital array.
###Input format:
The input gives a positive integer n (1 ≤ n < 7) and a positive integer m in one line.
###Output format:
Output n rows of upper left triangle array starting from M. The format is shown in the output sample, where there is a space after each number.
###Input example:
```in
3 2
```
###Output example:
```out
2 3 4
5 6
seven
```






answer:If there is no answer, please comment