Friday, 26 May 2023

Write a Shell script to find sum of two given numbers

CODE 


n1=10

n2=20

sum=`expr $n1 + $n2`

echo " SUM = " $sum

No comments:

Post a Comment