The DP tells you if a partition exists, but not which elements to use. To reconstruct, track how each sum was achieved. Modify the DP: when is true and you set , record that element contributed to sum .
Or backtrack: start at target sum, for each element check if was true before adding element . If so, include it and continue. Try reconstructing the partition for . Which elements form the subset summing to ?