How to show chapterNo/TotalChapterCount in the Chapter title of memoir document.
\documentclass{memoir}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\chapter{First}
\lipsum
\chapter{Second}
\lipsum
\end{document}
I want the chapter title as
Chapter 1/2 First
I dont need any changes in tableofcontents.

