print "This is a program that will find the average of 3 numbers"

x = input ("enter the first number:  ")

y = input("enter the second number:  ")

z = input("enter the third number : ")

a = (x + y + z) / 3.0

print ("The average of these three numbers is " + str(a))
