#!/usr/bin/python # statements end with either the newline character or a semicolon num1 = 45; num2 = 55; num3 = 66 sum = num1 + num2 + num3 print "Sum = ", sum