days :: Int -> Int
days y
|y `mod` 4 == 0 = 366
|otherwise = 365