package main import "fmt" func main() { var i, j, k int fmt.Scan(&i, &j, &k) if i <= j && i <= k { fmt.Println("Yes") } else { fmt.Println("No") } }