/*************************************************************************
 * Name: 
 * NetID: 
 * Precept:
 *
 * Description: Reads three integer command-line arguments and prints
 * them in ascending order.
 *
 * Hint: Don't use conditionals for this; use Math.min() and Math.max().
 *
 * Example:
 * % java ThreeSort 17 50 33
 * 17
 * 33
 * 50                                       (This is Book Exercise 1.2.34.)
 *************************************************************************/

public class ThreeSort {
    public static void main(String[] args) {

        // command-line input


        // compute the order
  

        // output in ascending order
  
    }
}