a = "abcdefghijklmnopqrstuvwxyz" b = io.read() for i = 1, 26 do if a:byte(i) ~= b:byte(i) then print(a:sub(i, i) .. "to" .. b:sub(i, i)) os.exit() end end