RosettaCodeData/Task/A+B/Batch-File/a+b-2.bat
2023-07-01 13:44:08 -04:00

8 lines
81 B
Batchfile

::aplusb.cmd
@echo off
setlocal
set a=%1
set b=%2
set /a c=a+b
echo %c%
endlocal