write a python programm that read 5 number and sum of all odd value between them
#write a python programm that read 5 number and sum of all odd
#value between them
i=0
sum=0
while i<5:
num=int(input("Enter the number"))
i+=1
if num%2!=0:
sum=sum+num
print("sum of odd value is:",sum)
Comments
Post a Comment