From f3e5aa27d591b2287b6f520533a109e9c2140086 Mon Sep 17 00:00:00 2001 From: Rizwan Shereef <34895602+rizwanshereef@users.noreply.github.com> Date: Mon, 29 Oct 2018 20:30:20 +0530 Subject: [PATCH] store value to variable "a" then find product --- challenges/4.3.Multiplication/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/challenges/4.3.Multiplication/main.py b/challenges/4.3.Multiplication/main.py index b60d801..4d80c64 100644 --- a/challenges/4.3.Multiplication/main.py +++ b/challenges/4.3.Multiplication/main.py @@ -1,6 +1,6 @@ ### Modify the code below ### - -product = 8 * 0 +a = 8 +product = a * 0 ### Modify the code above ###