I just started python, and I can't figure out why this simple script won't work.
print "Welcome to awesome sause 1.0"
print "Whats your name?"
name = raw_input()
print name + " eh? Well then, what do you want to to " + name + "?"
print "1 - Quit"
print "2 - Calculator"
print "3 - Conversation Agent 1.0"
a1 = input()
print a1
if a1 == 2
print "Alright, I guess this is pretty good if you want to add and stuff, but the conversation agent is much cooler if you were wondering about my opinion"
print "1 - Add"
print "2 - subtract"
print "3 - multiply"
print "4 - devide"
a2 = input()
if a2 == 1
print "First number if you please"
p1 = input()
print "Second number?"
p2 = input()
print "your answer is " + p1 + p2