From 0a14e2621dd5cb3396848e1e6e03c883772e1835 Mon Sep 17 00:00:00 2001 From: Dana Date: Thu, 13 Oct 2022 10:36:13 +0300 Subject: [PATCH] add new func --- app/calculator.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/calculator.py b/app/calculator.py index 4b767c9a..fc0e8845 100644 --- a/app/calculator.py +++ b/app/calculator.py @@ -16,3 +16,6 @@ def divide(x, y): def add2(x,y,z): return x+y+z + + def subtract2(x, y,z): + return x - y - z