Merging two xml files

Hello all. I want to merge these two xml files below so that I get the merged xml.

Thanks in advance

**file1 **

<players>
<player>
<player_id>5197</player_id>
<name>Brad Walch</name>
<shoots>L</shoots>
</player>
<player>
<player_id>5198</player_id>
<name>Ted Jones</name>
<shoots>L</shoots>
</player>

<player>
<player_id>5199</player_id>
<name>Eric Phillips</name>
<shoots>R</shoots>
</player>
</players>

file2

<players>
<player>
<player_id>5197</player_id>
<name>Brad Walch</name>
<position>D</position>
</player>
<player>
<player_id>5198</player_id>
<name>Ted Jones</name>
<position>LW</position>
</player>

<player>
<player_id>5199</player_id>
<name>Ted Jones</name>
<position>RW</position>
</player>
</players>

merged file

<players>
<player>
<player_id>5197</player_id>
<name>Brad Walch</name>
<shoots>L</shoots>
<position>D</position>
</player>

<player>
<player_id>5198</player_id>
<name>Ted Jones</name>
<shoots>L</shoots>
<position>LW</position>
</player>

<player>
<player_id>5199</player_id>
<name>Eric Phillips</name>
<shoots>R</shoots>
<position>RW</position>
</player>
</players>