первый комит

This commit is contained in:
SuhovK 2025-11-07 18:29:18 +00:00
commit 6bddb2cf72

9
.py Normal file
View File

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