From 6f6ca58e4fd2b7f32a4d11eec7c9d2255d0dd51e Mon Sep 17 00:00:00 2001 From: jaydeepika73 Date: Tue, 20 Feb 2024 14:15:33 +0530 Subject: [PATCH 1/2] first commit --- mul.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 mul.py diff --git a/mul.py b/mul.py new file mode 100644 index 0000000..13578c2 --- /dev/null +++ b/mul.py @@ -0,0 +1,4 @@ +num_1 = 2 +num_2 = 3 +product = num_1 * num_2 +print("Product of {} and {} is {}".format(num_1, num_2,product)) \ No newline at end of file From 47e0ce2ec40b9c1199050db5c355e2fdf9c6e0da Mon Sep 17 00:00:00 2001 From: Jay Deepika D <156066607+jaydeepika73@users.noreply.github.com> Date: Tue, 20 Feb 2024 14:20:19 +0530 Subject: [PATCH 2/2] Update mul.py --- mul.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mul.py b/mul.py index 13578c2..6c0529e 100644 --- a/mul.py +++ b/mul.py @@ -1,4 +1,4 @@ num_1 = 2 num_2 = 3 product = num_1 * num_2 -print("Product of {} and {} is {}".format(num_1, num_2,product)) \ No newline at end of file +print("Product of {} and {} is {}".format(num_1, num_2,product)) ;