x = (score) => { score = parseInt(readLine(), 10) return score >= 88 ? "excellent" : (score <= 87 && score >=40) ? "good": "fail"; } console.log(x())
Β© 2026 Hedgehog Software, LLC