Basic Python Program-7

write a program that evaluate an expression given by the user at run time using eval() function.


x=eval(input("Enter your expression"))
print("Result is",x)