0% found this document useful (0 votes)
10 views1 page

Shell Program To Add Two Numbers

Uploaded by

Himani Verma
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download as txt, pdf, or txt
0% found this document useful (0 votes)
10 views1 page

Shell Program To Add Two Numbers

Uploaded by

Himani Verma
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1/ 1

echo "Enter two numbers"

read x y

sum=$(( $x + $y ))
echo "X=$x"
echo "Y=$y"
echo "The sum is = $sum"

You might also like