@ -0,0 +1,11 @@
a=float
b=float
a=float(input("Введите 1 число: "))
b=float(input("Введите 2 число: "))
c=str(input("Введите знак + для сложения или знак * для умножения:"))
if c == "+":
print(a+b)
elif c == "*":
print(a*b)
The note is not visible to the blocked user.