-- your code goes here
local mystring='abc xyz'
local x, y = string.find(mystring,'', 0, true)
local w, z = string.find(mystring,'', x, true)
local author
print(x,y,w,z)
if y==nil or w==nil then
print(author)
else
author = string.sub(mystring, y+1, w-1)
print(author)
end