+%%%*********************************************************
+%%%*********************************************************
+\section{Introduction}
+% no \IEEEPARstart
+% You must have at least 2 lines in the paragraph with the drop letter
+% (should never be an issue)
+%%%*********************************************************
+%%%*********************************************************
+
+
+
+%%%*********************************************************
+%%%*********************************************************
+\section{Related works}
+%Wherever Times is specified, Times Roman or Times New Roman may be used. If neither is available on your system, please use the font closest in appearance to Times. Avoid using bit-mapped fonts if possible. True-Type 1 or Open Type fonts are preferred. Please embed symbol fonts, as well, for math, etc.
+%%%*********************************************************
+%%%*********************************************************
+
+
+
+%%%*********************************************************
+%%%*********************************************************
+\section{A Krylov two-stage algorithm}
+
+
+\begin{algorithm}[!h]
+\caption{A Krylov two-stage algorithm}
+\begin{algorithmic}[1]
+\Input $A$ (sparse matrix), $b$ (right-hand side)
+\Output $x$ (solution vector)\vspace{0.2cm}
+\State Set the initial guess $x^0$
+\For {$k=1,2,3,\ldots$ until convergence}
+\State Solve iteratively $Ax^k=b$
+\State Add vector $x^k$ to Krylov basis $S$
+\If {$k$ mod $s=0$ {\bf and} not convergence}
+\State Compute dense matrix $R=AS$
+\State Solve least-squares problem $\|b-R\alpha\|_2$
+\State Compute minimizer $x^k=S\alpha$
+\State Reinitialize Krylov basis $S$
+\EndIf
+\EndFor
+\end{algorithmic}
+\label{algo:01}
+\end{algorithm}
+%%%*********************************************************
+%%%*********************************************************
+
+
+
+%%%*********************************************************
+%%%*********************************************************
+\section{Experiments using petsc}
+%%%*********************************************************
+%%%*********************************************************
+
+
+
+%%%*********************************************************
+%%%*********************************************************