fork download
<?php
$year=2036;
if($year%400==0 || ($year%100!=0 && $year%4==0))
echo $year.' is Leap Year';
else echo $year.' is Not a Leap Year';
?>
Success #stdin #stdout 0.02s 26116KB
stdin
Standard input is empty
stdout
2036 is Leap Year