Given a integer N as a string number and K as input, write a program to print a number pyramid of K rows
Input
The first line of input is an integer N
The second line of input is an integer K
If N=10,K=5
The output should be
10
11 12
13 14 15
16 17 18 19
20 21 22 23 24
start = int(input())
for k in range(int(input())):
print(*[start + i for i in range(k + 1)])
start += k + 1
Comments
Leave a comment