Удалить .py

This commit is contained in:
SuhovK 2025-11-17 06:56:45 +00:00
parent 6bddb2cf72
commit 90f6f64573

9
.py
View File

@ -1,9 +0,0 @@
a = float(input("Первое число: "))
op = input("Операция (+, -, *, /): ")
b = float(input("Второе число: "))
if op == "+":
result = a + b
elif op == "*":
result = a * b
print(result)