package main import "fmt" func main() { var x int fmt.Scan(&x) if x == 0 || x == 4 || x == 10 { fmt.Println("Yes") } else { fmt.Println("No") } }