#! /bin/ksh93 -
float input="$1" # get it as input from the user in his locale
float output
function arith() { typeset LC_ALL=C; (($@)); }
arith output=input/1.2 # use the dot here as it will be interpreted
# under LC_ALL=C
echo "$output" # output in the user's locale