Method 1
========
One more way of adding two numbers.
Which one to use depends on which shell it is.
d=400
e=52
f=`expr $d + $e`
print $f
Method 2
========
#!/usr/bin/ksh
let a=$1
let b=$2
let c=a+b
print $c
Method 1
========
One more way of adding two numbers.
Which one to use depends on which shell it is.
d=400
e=52
f=`expr $d + $e`
print $f
Method 2
========
#!/usr/bin/ksh
let a=$1
let b=$2
let c=a+b
print $c