x=float(input())
y=float(input())
c=input()
if c == '+':
print (float(x+y))
if c == '-':
print(float(x-y))
if c == '/':
print (float(x/y)
if c == 'mod'and y!=0
print(x%y)
elif:
print ('Деление на 0!')
if c == 'pow':
print(float(x**y))
if c == 'div':
print(float(x//y))
else c == "*":
print(float(x*y))
Failed test #1 of 37. Runtime error
File "jailed_code", line 11
print(x%y)
^
SyntaxError: invalid syntax
x=float(input())
y=float(input())
c=input()
if c == '+':
print (float(x+y))
if c == '-':
print(float(x-y))
if c == '/':
print(float(x/y))
if c == "mod" and y!=0:
print(x%y)
else:
print('Деление на 0!')
if c == 'pow':
print(float(x**y))
if c == 'div':
print(float(x//y))
elif c == "*":
print(float(x*y))
x=float(input())
y=float(input())
c=input()
if c == '+':
print (float(x+y))
if c == '-':
print(float(x-y))
if c == '/':
print (float(x/y)
if c == 'mod' and y!=0:
print(x%y)
else:
print('Деление на 0!')
if c == 'pow':
print(float(x**y))
if c == 'div':
print(float(x//y))
else c == "*":
print(float(x*y))