if shape == 1
height = input("Please enter the height")
width = input("Please enter the width")
area = height*width
print "The area is", area
else:
radius = input("Please enter the radius")
area = 3.14*(radius**2)
print "The area is", area

This is the part I get an syntax error with, any ideas?

Thanks in advance