shell script that adds two integers and display answer on screen

please help
shell script that adds two intergers and display answer on screen

#!/usr/bin/ksh

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

thanks
Namish