public class Absolute {

  // for exercise 1

  /* Susan Eisenbach
   * Prints the absolute value of the typed in number
   */
  public static void main(String[] args) {
    System.out.print("Type in your number -> ");
    System.out.println(Util.absolute(IOUtil.readInt()));
  }
}