PHP Basics Learning Mode

What is the output of the following?

<?php
$a = 0xf2 + 0x09;
$b = $a >> 3;
echo $b;
?>