#day14
Read more stories on Hashnode
Articles with this tag
Write a Python program to find the sum of all odd numbers between 1 and a given number. n=int(input("enter the number")) sum=0 for i in range(0,n+1): ...