Computer Science, asked by piyadhar203, 5 hours ago

wap to input 5 numbers find the sum of all composite number​

Answers

Answered by kbsarma2004
0

Answer:

(you haven't specified the programming language)

For python-

 a = int(input("1st number= "))

 b = int(input("2nd number= "))

 c = int(input("3rd number= "))

 d = int(input("4th number= "))

 e = int(input("5th number= "))

sum = a+b+c+d+e

print (sum)

Similar questions