Computer Science, asked by wwwjawanarjaea766ema, 17 days ago

Write a Python program to read the values of X, Y, and Z from the user and calculate

the expression: 5X4+6Y3+3Z+6​

Answers

Answered by harshitgarg51
2

Answer:

x = int(input("Enter number"))

y = int(input("Enter number"))

z = int(input("Enter number"))

b = 5*x*4 + 6*y*3 + 3*z*6

print(b)

It will work 100 %

Mark in brainliest plz and follow for accurate answer

Similar questions