0
Why there is a mistake?
a = int(input("Enter first number")) b = int(input("Enter second number")) c = input("Choose action") if c==+: #it says that there is an unvalid syntax result=a+b print("Result:", result)
2 Respuestas
+ 4
if c == "+":
0
thanks!