Conjunctions of relational expressions like $x\ge y\wedge y\ge z$ are often abbreviated to expressions like
$x\ge y\ge z$ in mathematics. Python, unlike most other languages, allows the same abbreviations; instead of
writing something like x >= y and y >= z
, the preferred style in Python is to write an expression like
x >= y >= z
.
Fill in the placeholders so that the actual outputs match the expected outputs.