<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">

<xsl:template match="AAAAA">
<AAAAA>
<xsl:value-of select="."/>
<xsl:apply-templates/>
</AAAAA>
<BBBBB>
<xsl:value-of select="."/>
<xsl:apply-templates/>
</BBBBB>
</xsl:template>

<xsl:template match="BBBBB">
<AAAAA>
<xsl:value-of select="."/>
<xsl:apply-templates/>
</AAAAA>
<BBBBB>
<xsl:value-of select="."/>
<xsl:apply-templates/>
</BBBBB>
</xsl:template>

</xsl:stylesheet>