def z: a = 2 b= 5 c = a+b print (a) return (c)
I want to print (a) for some point and I do not want to print when I do not need it. What should I do?