package main import "fmt" func main() { var N, S int fmt.Scan(&N, &S) if S >= 25 && S < 30*N { fmt.Println("Yes") } else { fmt.Println("No") } }