From e321fe64deb134717226efe56b727b93c78e0d17 Mon Sep 17 00:00:00 2001 From: Tanvi Date: Sat, 26 Jul 2025 12:34:30 +0530 Subject: [PATCH] Added multiplication function --- superstar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superstar.py b/superstar.py index 2380c63..2185337 100644 --- a/superstar.py +++ b/superstar.py @@ -6,5 +6,5 @@ def greet(name): def add(a, b): """Function to add two numbers.""" return a + b - -# This is a comment line +def multiply(a, b): + return a * b \ No newline at end of file