print "Hello World\n"; #the simplest sort of print print "Hello ","World\n"; #this prints the same thing but uses a list of strings to do the same thing print ("1+1=",(1+1)); #prints 1+1=2 first prints the string 1+1= and then what 1+1 evaluates to(2);