public class SOP {

  // code for exercise 2

 /* Susan Eisenbach
   * Prints the maximum of an input number, double it, and the number squared
   */

  public static void main(String[] args) {
    System.out.print("Type in your number -> ");
    int num = IOUtil.readInt();
    System.out.println(Util.sumOrProduct(num, num));
  }
}
