Need to remove leading space from awk statement space from calculation

I created a awk state to calculate the number of success however when the query runs it has a leading zero. Any ideas on how to remove the leading zero from the calculation?

Here is my query:

cat myfile.log | grep [0-9] | awk '{print $2,$3,$7,$11,$15,$19,$23,$27,$31,$35($19/$15*100)}'
02:00:00 1903385 1903132 251 781 762 16 0 0 097.5672

If I had to guess, I'd say field $35 contained a 0, and all you need to do is add a comma between that and the calculation.

Alternatively:

awk '/[0-9]/ {print $2, $3, $7, $11, $15, $19, $23, $27, $31, $35, $19/$15*100}' myfile.log