I also used a certain Brainfuck Developer IDE that includes a "Text generator" tool to generate BF code for your string, this tool produced the following code:
>++++++++[<+++++++++>-]<.
>++++[<+++++++>-]<+.
+++++++.
.
+++.
>++++++[<----------->-]<-.
------------.
>+++++[<+++++++++++>-]<.
>++++[<++++++>-]<.
+++.
------.
--------.
>++++++[<----------->-]<-.
Here is an overview of the number of instructions being performed at run-time in the different versions:
$$
\newcommand{smallm}[0]{\overset{n\ \gg\ m}{\longrightarrow}}
\begin{array}{|l|c|c|}
\hline \\ & \textrm{Your code} & \textrm{200_success A} & \textrm{200_success B} & \textrm{My code} \\
\hline \\ \textrm{Next} & 0 & 99 & 69 & 35 \\
\hline \\ \textrm{Previous} & 0 & 90 & 64 & 34\\
\hline \\ \textrm{Print} & 13 & 13 & 13 & 13\\
\hline \\ \textrm{Add} & 193 & 709 & 466 & 256\\
\hline \\ \textrm{Subtract} & 160 & 21 & 22 & 36\\
\hline \\ \textrm{Start While} & 0 & 1 & 1 & 1\\
\hline \\ \textrm{End While} & 0 & 10 & 10 & 10\\
\hline \\ \textrm{Total} & 366 & 943 & 645 & 385\\
\hline
\end{array}$$$$
\newcommand{smallm}[0]{\overset{n\ \gg\ m}{\longrightarrow}}
\begin{array}{|l|c|c|}
\hline \\ & \textrm{Your code} & \textrm{200_success A} & \textrm{200_success B} & \textrm{My code} & \textrm{bfdev tool} \\
\hline \\ \textrm{Next} & 0 & 99 & 69 & 35 & 39 \\
\hline \\ \textrm{Previous} & 0 & 90 & 64 & 34 & 39 \\
\hline \\ \textrm{Print} & 13 & 13 & 13 & 13 & 13 \\
\hline \\ \textrm{Add} & 193 & 709 & 466 & 256 & 226 \\
\hline \\ \textrm{Subtract} & 160 & 21 & 22 & 36 & 193 \\
\hline \\ \textrm{Start While} & 0 & 1 & 1 & 1 & 6 \\
\hline \\ \textrm{End While} & 0 & 10 & 10 & 10 & 33 \\
\hline \\ \textrm{Total} & 366 & 943 & 645 & 385 & 549 \\
\hline
\end{array}$$
Your code : 366
200_success A : 151
200_success B : 123
My code : 124
bfdev generated: 185