Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
10 views

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
0% found this document useful (0 votes)
10 views

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
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