# This inputs two strings and searches for the smaller in the larger

def main():
    search = raw_input( "Enter a search string: " )
    target = raw_input( "Enter a target string: " )
    index = target.find(search)
    if index == -1:
        print "Not found"
    else:
        print " '%s' is in '%s' starting at position %d" % (search, target, index)

main()
