PPA-1

Question

Print the first \(5\) positive integers in ascending order with one number in each line.

Hint

Execute the following lines and study the output.

print(1)
print(2)

Solution

print(1)
print(2)
print(3)
print(4)
print(5)

Video Solution