CODE: [Copy to clipboard]@echo off&setlocal enabledelayedexpansion for /l %%a in (1,1,10) do ( set /a m=10*%%a echo !m! ) pause