On the Way

AtCoder
IDtenka1_2019_a
Time2000ms
Memory256MB
Difficulty
There are three houses on a number line: House $1$, $2$ and $3$, with coordinates $A$, $B$ and $C$, respectively. Print `Yes` if we pass the coordinate of House $3$ on the straight way from House $1$ to House $2$ without making a detour, and print `No` otherwise. ## Constraints * $0\leq A,B,C\leq 100$ * $A$, $B$ and $C$ are distinct integers. ## Input Input is given from Standard Input in the following format: $A$ $B$ $C$ [samples]
Samples
Input #1
3 8 5
Output #1
Yes

We pass the coordinate $5$ on the straight way from the house at coordinate $3$ to the house at coordinate $8$.
Input #2
7 3 1
Output #2
No
Input #3
10 2 4
Output #3
Yes
Input #4
31 41 59
Output #4
No
API Response (JSON)
{
  "problem": {
    "name": "On the Way",
    "description": {
      "content": "There are three houses on a number line: House $1$, $2$ and $3$, with coordinates $A$, $B$ and $C$, respectively. Print `Yes` if we pass the coordinate of House $3$ on the straight way from House $1$ ",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "tenka1_2019_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "There are three houses on a number line: House $1$, $2$ and $3$, with coordinates $A$, $B$ and $C$, respectively. Print `Yes` if we pass the coordinate of House $3$ on the straight way from House $1$ ...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments