Exercise : Indentation

Programs should be indented properly to make them easier to read.

The following program has poor indentation. Paste it into jGRASP and fix it.

  public class Icky {
public static void main(String[] args) {
System.out.println("Properly indented programs");
     System.out.println("look ever so much better!");
 System.out.println("please fix me");
        System.out.println("and make me beautiful again");
}
  }