<?xml version="1.0" encoding="UTF-8" ?>
<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="recommended-books">
<div>
<xsl:apply-templates/>
</div>
</xsl:template>

<xsl:template match="book">
<p><xsl:apply-templates/></p>
</xsl:template>

</xsl:transform>
