Python バージョン 3.3.1 のこの初歩的な電卓プログラムでエラーが発生し続けます。自分で問題を見つけることができません。誰か助けてもらえますか? 事前にどうもありがとうございました!
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)