Calculate the sum of certain the_sub_fields

<?php 
  $total = 0;
  while(the_repeater_field('repeater' )): 
      the_sub_field('space_avail' );
      $total += intval( get_sub_field('space_avail' ) );
  endwhile; 
  echo $total;
?>

Notice the intval. It tells php to consider the result as an number, not as a string