#Get input
print "What is your first initial?"
initial=raw_input()
#Check if it is an alphabet
while not initial.isalpha():
print "That was not a valid initial!"
print "What is your first initial?"
initial=raw_input()
print "Thanks"
#Get input
#ans=raw_input("Are you a girl or a boy (G/B)? ")
ans="b"
#convert answer to uppercase
ans=ans.upper()
if ans=='G':
print "You look pretty today!\n"
else:
if ans=='B':
print "You look handsome today!\n"
else:
print "Your answer makes no sense!\n"
#get book title
#book=raw_input("What is the book title? ")
book="Mary and Her Lambs"
#print book title
print book
print "Thanks for the book!\n"
#Get input
#age1=input("\nWhat is the first child's age? ")
#age2=input("\nWhat is the second child's age? ")
age1=10
age2=12
diff=age1-age2
# abs() function determines absolute value
diff=abs(diff)
#Result
print "\nThey are ",diff," years apart."