Здравствуйте. Типовая задача ^ Выдает ошибку Failed test #14 of 37. Cannot check answer. Perhaps output format is wrong

a=float(input())
b=float(input())
Z=input("")
if Z=="+":
    print(a+b)
elif Z=="-":
    print(a-b)
elif (b==0) and (Z=="/") or (Z=="mod") or (Z=="div"):
    print("Деление на 0!")    
elif Z=="/" : 
    print(a/b)
elif Z=="*":
    print(a*b)
elif Z=="mod":
    print(a%b)
elif Z=="pow":
    print(a**b)
elif Z=="div":
    print(a//b)**

Ответы (0 шт):