Is there an algorithm package that allows me to achieve the style of the algorithms where each number is inside a circle in an algorithm? I am interested specifically in the numbering of the steps by encircled numbers.
%%%% ijcai21.tex
\typeout{IJCAI--21 Instructions for Authors}
% These are the instructions for authors for IJCAI-21.
\documentclass{article}
\pdfpagewidth=8.5in
\pdfpageheight=11in
% The file ijcai21.sty is NOT the same than previous years'
\usepackage{ijcai21}
% Use the postscript times font!
\usepackage{times}
\usepackage{soul}
\usepackage{url}
\usepackage[hidelinks]{hyperref}
\usepackage[utf8]{inputenc}
\usepackage[small]{caption}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{booktabs}
\usepackage{algorithm}
\usepackage{algorithmic}
\urlstyle{same}
\newtheorem{example}{Example}
\newtheorem{theorem}{Theorem}
\title{}
\begin{document}
\maketitle
\begin{algorithm}[tb]
\caption{algorithm}
\label{alg:algorithm}
\textbf{Input}: Your Input\
\textbf{Output}: Your output\
\begin{algorithmic}[1] %[1] enables line numbers
\STATE a = first \
\STATE b = second\
\STATE sum = first - second\
\end{algorithmic}
\end{algorithm}
\end{document}
