From fadc5cfcf55009bf42c95485449b17e3753b011d Mon Sep 17 00:00:00 2001 From: Benjamin Hackl Date: Fri, 11 Oct 2024 14:49:38 +0200 Subject: [PATCH] subtraction --- math.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/math.py b/math.py index 32963f4..bfc5267 100644 --- a/math.py +++ b/math.py @@ -1,3 +1,5 @@ def addition(a: float, b: float) -> str: return a + b +def subtraction(a: float, b: float) -> float: + return a - b