Write a function that takes one integer as its argument sum_of_squares_until_passes(target_num) which will add up the squares of the first few integers just until that sum is bigger than the argument target_num. It will RETURN that sum of the squares.