Help with File processing - Extracting the column

I have a line from table space report:

 5 135_TT       ms Normal         1774336.0  1774208.0   761152.0  1013056.0  57.1%

Now I have to get 1013056.0 as o/p.

For this I tried

cut -f32 -d" "

previously it worked now it is showing empty space.

Suggest me the best code for this which have to work everytime.

awk '{print $8}' file