#!/usr/bin/python

author = "Seth"
lastname = "Schoen"
print "Who are you?"
user = raw_input()
if len(user) < len(author):
        print "Your name is shorter than mine!"
if len(user) > len(author):
        print "Your name is longer than mine!"
if len(user) == len(author):
        print "Your name is just as long as mine!"
        if user == author:
                print "In fact, your name is the same as mine!"
                print "Maybe we are the same person!"
                print
                print "What's your last name?"
                user_last = raw_input()
                if user_last == lastname:
                        print "Hey, wow!  We're probably the same!"
                else:
                        print "I guess you are some other", user
        else:
                print "It seems that we are different people, though."
