добавил деление
Some checks failed
CI / test (pull_request) Has been cancelled

This commit is contained in:
2025-11-17 10:19:06 +03:00
parent 19a3bd1141
commit 117fecd008

2
app.py
View File

@@ -2,3 +2,5 @@ def calculator(a: int, b: int) -> int:
return a + b return a + b
def devide(a: int, b: int) -> int:
return a / b