Computer Science, asked by mandavi10, 1 year ago

write a program to assign 3 numbers find their sum product and average ​

Answers

Answered by osamahere313
1

//this program is in python

a=int(input("enter the first number"))

b=int(input("enter the second number"))

c=int(input("enter the third number"))

sum=a+b+c

print(sum)

prod=a*b*c

print(prod)

average=(a+b+c)/3

print(average)

Similar questions