Find sum of any no. from command line argument using Linux shell script in Ubuntu

sum=0
for i in $*
do
sum=`expr $sum + $i`
done
echo sum is $sum