print (5 + 3)
a = 3.0
b = 7
print 'the answer is', (a / b)
c = (a/b)
d = "how are you today?"
print d[0], d[5],
print d[6]
print d[0:5]
d = """ this is a new

way of
quoting strings"""
print d





