Python Demo
Python Code
Output
#A demo of print function a = 10 b = 20 c = a + b print (c) print ("The value of c =",c)