#!/usr/bin/ksh sum=`expr $1 + $2` echo " the sum of the values is $sum" namish@france => ./sample1 10 20 30