print "Welcome to python programming"
Welcome to python programming
sum=10+20 print sum
30
num1,num2=50,25 Sum=num1+num2 print "addition of %d and %d = %d" %(num1,num2,Sum)
addition of 50 and 25 = 75