_NAME_ get_day_1996_from_seconds_since_1996 _PROTOTYPE_ day1996 = get_day_1996_from_seconds_since_1996(secondsSince1996) _SHORT-DESCRIPTION_ Get the day-of1996 in which secondsSince1996 occurs _DESCRIPTION_ get_day_1996_from_seconds_since_1996 returns the day of 1996 (a count of days since Jan 1, 1996 where day1996 = 1 on Jan 1, 1996) in which the second secondsSince1996 occurs. _SHORT-CODE-SAMPLE_ secondsSince1996 = 54605304L day1996 = get_day_1996_from_seconds_since_1996(secondsSince1996) print, "day1996 = ", day1996 _INPUT_ * secondsSince1996 is the number of seconds since 00:00:00 Jan. 1, 1996. _OUTPUT_ * The day-of-1996. (Be aware that day1996 = 1 on Jan. 1, 1996.)