RosettaCodeData/Task/A+B/Batch-File/a+b-5.bat
2026-04-30 12:34:36 -04:00

12 lines
134 B
Batchfile

@echo off
setlocal enableextensions
set /p ab=
call :setab %ab%
set /a res=a+b
echo %res%
goto:eof
:setab
set a=%1
set b=%2
goto:eof