<?php
define('C', '1');
function f($u) {
    return $u==C ? '0' : '1';
}
?>
