test = str(raw_input("Which function would you like to use? "))
print test
one = int(raw_input("Input the first number. "))
two = int(raw_input("Input the second number. "))
if test == "Addition" or "Add" or "Adding" or "+":
print one + two
elif test == "Subtraction" or "Subtract" or "Subtracting" or "-":
print one - two
No matter what I do, the Addition if statement is the only thing that is run so if I put 2 and 1 it will always equal 3 even if I put a -. What should I do to fix that?