<!DOCTYPE html>
<html>
<body>
<?php
$number = 9;
$str = "Beijing";
printf("There are %u million bicycles in %s.",$number,$str);
?>
</body>
</html>