Write a Shell Script to find the value of one number raised to the power of another
echo "Input number"
read no
echo "Input power"
read power
counter=0
ans=1
while [ $power -ne $counter ]
do
done
ans=`expr $ans \* $no`
counter=`expr $counter + 1`
echo "$no power of $power is $ans"