package main
import ("fmt")
func main() {
time := 20
if time < 18 {
fmt.Println("Good day.")
} else {
fmt.Println("Good evening.")
}