a = int(input("Введи первое число")) b = int(input("Введи первое число")) d = str(input("Что будем делать?")) if d == "*": c = a*b print("Твой ответ", c) elif d == "умножить": c = a*b print("Твой ответ", c) elif d == "сложить": c = a+b print("Твой ответ", c) elif d == "+": c = a+b print("Твой ответ", c) elif d == "-": c = a-b print("Твой ответ", c) elif d == "разность": c = a-b print("Твой ответ", c) elif d == "/": c = a/b print("Твой ответ", c) elif d == "делить": c = a/b print("Твой ответ", c) else: print("Такое не умеем")