Home > Coding Fundamentals Refresher > Coding Fundamentals and Patterns > Initializing Variables and Basic Math Operations Show previous contentAre you sure you're getting this? Fill in the missing part by typing it in.What will be the output of the following code block in Python?cppcsharpgojavajavascriptpython1var a = 8; 2var b = 12; 3var c = b * a + a; 4console.log(--c);Write the missing line below.SubmitReveal answer Show following content