// No.2371 最大の試練それは起床 package main import "fmt" const ( htos = 3600 mtos = 60 ) func main() { var h, m int fmt.Scan(&h, &m) x := htos*h + mtos*m + 30 if x < (7*htos + 30*mtos) { fmt.Println("Yes") } else if x > (8*htos + 30*mtos) { fmt.Println("No") } else { fmt.Println("Late") } }