/*************************************************************************
 * Name: 
 * Login: 
 * Precept:
 *
 * Description: Reads 3 integer values from the command line and print them
 * in ascending order.
 *
 * Dependencies: None.
 *
 * 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


    
  
    }
}