Write a program that reads three integer numbers and prints true if the first number lies between the second and third one (inclusive). Otherwise, it is to print false.
The sorting order of the two last arguments can be any.
Write a program that reads three integer numbers and prints true if the first number lies between the second and third one (inclusive). Otherwise, it is to print false.
The sorting order of the two last arguments can be any.
Sample Input 1:
3
3
3Sample Output 1:
trueSample Input 2:
40
30
50Sample Output 2:
trueSample Input 3:
40
100
20Sample Output 3:
trueCreate a free account to access the full topic