From f8397ca06e6cfeb45a3fd6b428b4c1c44c4398c9 Mon Sep 17 00:00:00 2001 From: 23_KorobovFD <23_KorobovFD@iux.local> Date: Sun, 17 May 2026 22:20:54 +0300 Subject: [PATCH] =?UTF-8?q?3=20=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- math/math.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 math/math.go diff --git a/math/math.go b/math/math.go new file mode 100644 index 0000000..44692ff --- /dev/null +++ b/math/math.go @@ -0,0 +1,13 @@ +package math + +func Add(a, b int) int { + return a + b +} + +func Subtract(a, b int) int { + return a - b +} + +func Multiply(a, b int) int { + return a * b +} \ No newline at end of file