@echo off :start echo Add-Operation echo Please select the 2 numbers you want to add, confirm each number with ENTER set /p num1= set /p num2= echo %num1%+%num2%? pause set /a Answer=%num1%+%num2% echo %Answer% pause goto start :e echo. Finished!