'''
Created on Sep 1, 2016

@author: Prof R
'''
print "hello CompSci 101 Students"
print "You rock!"
print "hello CompSci 101 Students", "You rock!"
print "hello CompSci 101 Students\nYou rock!"

x = 5
y = 10
print "x is ", x, "y is", y
print "x plus y is", x+y
#print z   Does not work z has no value

