x=290
y=300
if x>y and y<100
print(x+10)
else if y>xorx<100:
print(y+10)
else print(x+y)
State the error in the above python code.
Answers
Answered by
3
x=290
y=300
if x>y and y<100:
print(x+10)
elif y>x or x<100:
print(y+10)
else:
print(x+y)
this is how to do it
Similar questions