<?php

define('a', 2);
const a = 1;


if (defined('a')) {
    print a;
}

?>