PHP Basics Learning Mode

Mark works as a Web Application Developer for Blue Solutions Inc. He writes the following code:

<?php
    $x =25;
    while($x<10)
    {
        $x--;
    }
    print ($x); 
?>

What will be the output when Mark tries to compile and execute the code?