print "Hello, World!\n"
print "Hello, World!\n"
print "Hel" + "lo, Wo" + "rld!"
print "Hello, W" + 'o' + "rld" + '!'
print "The Millennium ends Dec %d %d " %(31,2000)
m = 44 # assigns the value 44 to the variable m
print "m = %d " % m,
n = m + 33 # assigns the value 77 to the variable n
print "and n = %d " % n
n=44
print "n = %d" % n
# Python does not have semicolons so wont give any errors.
n=44
print "n = %d" % n
m = 0 #In python we do not have declaration of variables, we just initialize it and use it.
n=44
print "m = %d and n = %d" %(m,n)
BEEP = '\b'
MAXINT = 2147483647
N = MAXINT/2
KM_PER_MI = 1.60934
PI = 3.14159265358979323846
print "Enter two integers: "
m = int(raw_input())
n = int(raw_input())
print "m = %d , n = %d " %(m,n)
print "Enter three decimal numbers: "
x = float(raw_input())
y = float(raw_input())
z = float(raw_input())
print "x = %f , y = %f , z = %f" %(x,y,z)
print "Enter four characters: ";
c1 = raw_input()
c2 = raw_input()
c3 = raw_input()
c4 = raw_input()
print "c1 = " + c1 + ", c2 = " + c2 + ", c3 = " + c3 + ", c4 = " + c4