Make a simple calculator with .bat file
Steps:
1. open Notepad or any text editor.
2.type
" @echo off
: start
set /p math=problem..?
set /a result=%math%
echo %result%
pause
goto start
"
3.Save it with any file name with .bat extension
and boom your calculator is ready to use..