Very likely I do not understand the question, you can try
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
\label{eq1} a+b+c&=0,\\
\label{eq2} d+e+f&=0,\\
\label{eq3} m+n &= 0, \quad s+t=0, \tag*{(\theequation{\text{a},\text{b}})}
\end{align}
\end{document}

and let me know if this is what you want. I have a hard time understanding what that could be good for.
Perhaps you are looking for something like this.
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
\label{eq1} a+b+c&=0,\\
\label{eq2} d+e+f&=0,\\
\label{eq3} m+n &= 0, \quad s+t=0,\stepcounter{equation} \tag*{(\theequation{\text{a},\text{b}})}
\end{align}
\begin{align}
\label{eeq1} a+b+c&=0,\\
\label{eeq2} d+e+f&=0,\\
\label{eeq3} m+n &= 0, \quad s+t=0,\stepcounter{equation} \tag*{(\theequation{\text{a},\text{b}})}
\end{align}
\end{document}

aligninstead ofeqnarray? – jsxs Jan 23 '18 at 01:34\lefteqn, use the\MoveEqLeftfrom the mathtools package, and if you are in the same minority like me who likes the spaces around equality signs in eqnarray, put extra spaces, but don't tell David Carlisle ;-) – Jan 23 '18 at 02:42