I try to make my own macro for a typesetting an authors block instead of using package authblk. How can I suppress separator near the fist author of the article. Main condition is to use only LaTeX kernel, no additional packages.

\documentclass[a4paper,12pt]{article}
\makeatletter
\let\@authortofile\@empty
\def\@separator{, }
\def\addauthor#1#2{%
\g@addto@macro\@author{\@separator#1\textsuperscript{#2}}
\g@addto@macro\@authortofile{\@separator#1}
}
\makeatother
\date{}
\title{Title}
\addauthor{One}{1}
\addauthor{Two}{1,2}
\addauthor{Three}{1,2}
\begin{document}
\maketitle
\end{document}
