diff --git a/mul.py b/mul.py new file mode 100644 index 0000000..6c0529e --- /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)) ;