Introduction: Batch Calculator

I'm going to show you how to make a simple batch calculator in notepad.

Step 1: Code

Here's the code just copy and paste
Save as "whatyouwant".bat

echo off
mode 20,4
title MATH
:loop
cls
echo.
set /p som=
set /a antwoord=%som%
echo %antwoord%
pause > nul
goto loop