WAP to display all odd numbers from N to M
WAP to display all odd numbers from N to M
#Program By eboostup.com
#WAP to display all odd numbers from N to M
n=int(input("Enter (N)starting no. : "))
m=int(input("Enter (M)ending no. : "))
while n<=m:
if(n%2==0):
print(n)
n=n+1
#ankush
print("Powered By eboostup")
