Poker poker.
Write a program that receives 3 ints, and outputs the median. The median of 3 ints is here defined as follows: if two (or more) of the ints are equal, then the median is equal to their value; otherwise, the median is the unique int of the three such that one is greater than it and one is less than it.
Input
3 ints.
Output
The median of the 3 input ints.
Observation
You may flesh out the following code:
Input
1 1 1 2 1 3 1 4 1 5 1
Output
Printing hand... 1 1 2 1 3 1 4 1 5 1 Done Straight flush