package main

import "fmt"

const (
	µsPerDay = msPerDay * 1000
	msPerDay = 24 * 60 * 60 * 1000
)

func main() {
	fmt.Println(µsPerDay / msPerDay)
}
