/**
 * Echoes all command line arguments to the screen.
 *
 * @author Zach Tomaszewski
 */
public class Echo {

  public static void main(String[] args) {
    System.out.print("You said: ");
    for (int i = 0; i < args.length; i++) {
      System.out.print(args[i] + " ");
    }
    System.out.println();
  }
}
