Best way to load in level information?

Hi all

I was thinking that an XML document might suit this purpose pretty well as my levels need the following information: Row, columns, target number to reach, set of numbers for each column that will create an amount (Aim of the game is to get all the columns to equal the same amount)

I was thinking the file might look something like this?


<Level id="1">
      <LevelDetails target="7" rows="3", columns="3">
          <ColumnOne> 3, 4, 12 </ColumnOne>
          <ColumnTwo> 2, 5, 3 </ColumnTwo>
          <ColumnOne> 6, 1, 4 </ColumnOne>
      </LevelDetails>
</Level>

This way I can store the target, generate the sprites for the rows and the columns and then put the values inside each column?