'''
Online Python Compiler.
Code, Compile, Run and Debug python program online.
Write your code in this editor and press "Run" button to execute it.
'''
print ("+ Это плюс - Это минус / Это поделить * Это умножить ** Это степень % Это остаток при делении")
a = float( input("Введите первое число: "))
what = input("Выберете знак: ")
b = float( input("Введите второое число: "))
if what == "+":
c = a + b
print ( str(c))
elif what == "-":
c = a - b
print ( str(c))
elif what == "/":
c = a / b
print ( str(c))
elif what == "*":
c = a * b
print ( str(c))
elif what == "**":
c = a ** b
print ( str(c))
elif what == "%":
c = a % b
print ( str(c))