Functions Learning Mode

What will be the output of the following PHP code?

    <?php
    function a()  
    {
        function b()
        {
            echo 'I am b';
    }
        echo 'I am a';
    }
    b();
    a();
    ?>