Computer Science, asked by nituthapa923, 5 months ago

Write a program
1
2 6
3 7 10
4 8 11 13
5 9 12 14 15




Answers

Answered by palanisuganthi96
1

Answer:

Python:

i = 0

while i < 15:

i = i + 1

print(i)

Note that yahoo ruined the indentation

Similar questions