#Write a program that reads one positive integer n and prints all integers #between 1 and n inclusive. #Input n = int(input("enter integer ")) #Calculations and Output i = 1 while(i<=n): print(i) i=i+1 #i+=1 print("End of the program")