import java.util.Collections; import java.util.ArrayList; import java.util.Scanner; public class NumberSort { public static void main(String[] args) { // Create an object to store all numbers. // Set up a loop to read numbers. // You'll have to decide how to tell when you're done. // Sort the numbers. // Print the sorted numbers. } }