PHP Basics Learning Mode

Consider the following code:

<?php
    $a;
    for($a=1;$a<=100;$a++)
    {
    if($a==50)
    {
        continue;
    }
    print($a);
    }
?>

What will be the output of the program?