I have the following code for printing out an algorithm
However, I would like to have Input and Output before the For Loop.
E.g. Input: ingredients I = (1, \ldots, N), Output: Pizza
Is there an elegant solution for this?
\documentclass[12pt]{beamer}
\usepackage{algorithm,algorithmic}
\begin{document}
\begin{frame}
\begin{algorithm}[H]
\begin{algorithmic}[1]
\FOR{$j=1$ to $N$}
\STATE Add Pineapple on Pizza
\ENDFOR
\end{algorithmic}
\caption{pseudocode for making a pizza}
\label{alg:seq}
\end{algorithm}
\end{frame}
\end{document}

