What's wrong with my code?
def add(x,y): return x + y def subtract(x, y): return x - y def multiply(x, y): return x * y def divide(x, y): return x // y print("Enter choice(+/-/Ă/Ă·): ") while True: choice = input("Enter choice(+/-/Ă/Ă·): ") if choice in ('+','-', 'Ă', 'Ă·',): num1 = int(input("Enter first number: ")) num2 = int(input("Enter second number: ")) if choice == '+': print(num1, "+", num2, "=", add(num1, num2)) elif choice == '-': print(num1, "-", num2, "=", subtract(num1, num2)) elif choice == 'Ă': print(num1, "Ă", num2, "=", multiply(num1, num2)) elif choice == 'Ă·': print(num1, "Ă·", num2, "=", divide(num1, num2)) break else: print("Invalid Input")