5 lines
91 B
Text
5 lines
91 B
Text
define l(y) {
|
|
if (y % 100 == 0) y /= 100
|
|
if (y % 4 == 0) return(1)
|
|
return(0)
|
|
}
|