I keep getting an error in this rudimentary calculator program in Python version 3.3.1. I cannot find the problem myself, can someone help me? Thank you very much in advance!
x=(input("Which operation would you like to perform?"))
if x=='Addition':
y=int(input("Enter the first number?"))
z=int(input("Enter the second number?"))
a=y+z
print(a)
elif x=='Subtraction':
y=int(input("Enter the first number?"))
z=int(input("Enter the second number?"))
a=y-z
print(a)
elif x=='Multiplication':
y=int(input("Enter the first number?"))
z=int(input("Enter the second number?"))
a=y*z
print(a)
elif x=='Division':
y=int(input("Enter the first number?"))
z=int(input("Enter the second number?"))
a=y/z
print(a)