im trying to make a calculator but for some reason when it comes to picking an operation it will only do add the elif statements do not execute even if i input the right command for it
print("welcome to the simple calculator please type in a number")
#user enters 1st number
Num1=int(input("type a number between 0-9"))
#user enters 2nd number
Num2=int(input("please type in your second number"))
#user enters the operation that is used
Ope=input("would you like to divde,add,subtract or times")
#adds the numbers
if Ope=="add"or"Add":
print(Num1+Num2)
#subtracts the numbers
elif Ope=="subtract" or "Subtract":
print(Num1-Num2)
elif Ope=="times" or "Times":
print(Num1*Num2)
elif Ope=="divide" or "Divide":
print(Num1/Num2)