SyntaxFix
Write A Post
Hire A Developer
Questions
@ECHO OFF ECHO Welcome to my calculator! ECHO What is the number you want to insert to find the sum? SET /P Num1= ECHO What is the second number? SET /P Num2= SET /A Ans=%Num1%+%Num2% ECHO The sum is: %Ans% PAUSE>NUL