Computer Science, asked by shobanashankar, 5 months ago

Write a Python Program to solve the given expression : x2 +2x+(x+y)

Attachments:

Answers

Answered by atulkumargpt
5

Answer:

x = input("Enter x value : ")

y = input(" Enter y value : ")

print("Expression result : ", (x*2)+(2*x)+(x+y))

Answered by 30srjal
1

Answer:

here's your answer...

....

Attachments:
Similar questions