Computer Science, asked by barshapodder2499, 3 months ago

write a program in python to take input from user calculate (a+b)*c​

Answers

Answered by ashokjaiswal9999
0

Explanation:

a = int(input("Enter first number"))

b = int(input("Enter second number"))

c = int(input("Enter third number"))

s= (a+b)*c

print(s)

Similar questions
Art, 9 months ago