0% found this document useful (0 votes)
16 views

Shell Program To Add Two Numbers

Uploaded by

Himani Verma
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views

Shell Program To Add Two Numbers

Uploaded by

Himani Verma
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
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