Help me to solve this I am not getting output
while true: print("options:") print("enter add to add 2 nmber") print("enter sub to sub 2 number") print("enter mul to multipky 2 number") print("enter dic to divide 2 number") print("enter quite to end program") inputus = input(":") if inputus == "quite": break elif inputus == "add": num1=float(input("enter any number")) num2=float(input("enter another number")) z=str(num1+num2) print("the reasult is:",z) elif inputus == "sub": num1=float(input("enter any number")) num2=float(input("enter another number")) z=str(num1-num2) elif inputus == "mul": num1=float(input("enter any number")) num2=float(input("enter another number")) z=str(num1*num2) elif inputus == "div": num1=float(input("enter any number")) num2=float(input("enter another number")) z=str(num1/num2) else: print("unknown input")



