SQR by bk1e

while [ -z $r ];do
read x y||r=1
a=0
while ((~x&~y));do
let a+=x--*y--
done
echo $a
done

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page