From 16e23c7b9fbf21fe30d0c275ba9b3a24f80286a6 Mon Sep 17 00:00:00 2001 From: tanmaysankhejr <33175387+tanmaysankhejr@users.noreply.github.com> Date: Mon, 30 Oct 2017 17:42:30 +0530 Subject: [PATCH] Create multiply.py --- python/multiply.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 python/multiply.py diff --git a/python/multiply.py b/python/multiply.py new file mode 100644 index 0000000..53d41b7 --- /dev/null +++ b/python/multiply.py @@ -0,0 +1,3 @@ +def mul(): + a, b = list(map(int,input().strip().split())) + return a*b