Question 2

Write a Program to Print the Numbers from 1 to 5 each on a new line

Code:

	# Print Numbers 1-5
	print(1)
	print(2)
	print(3)
	print(4)
	print(5)
	

Output:

1
2
3
4
5

Charlie M-S