_==0 "exec" "gawk" "-f" "$0" function add(a,b, t) { while (b!=0) { t=lshift(and(a,b),1);a=xor(a,b);b=t } return a } { print add($1,$2) }