\documentclass{article}
\usepackage{ifthen,calc}
\usepackage{hfont}

\begin{document}

\newcounter{myloopcnt}
\setcounter{myloopcnt}{0}
\newcounter{summation}
\setcounter{summation}{0}

\noindent\textbf{1ºÎÅÍ 10±îÁö ´õÇغ»´Ù.}

\noindent\whiledo{%
        \value{myloopcnt} < 10}{%
        \stepcounter{myloopcnt}%
        \setcounter{summation}{\thesummation + \themyloopcnt}%
        \themyloopcnt¹ø° ½ÇÇà : \qquad ÇöÀç±îÁö ÇÕ°è \thesummation\\}
\end{document}