OOP Learning Mode

Consider the following PHP code snippet:

<?php

class A {
static $word = "hello";
static function hello() {print static::$word;}
}
class B extends A {
static $word = "bye";
}
B::hello();

?>

What will be the output on running the above mentioned code snippet?