/** @param args the command line arguments */
  public static void main(String[] args) {

    SmartPhone phone1 = new iPhone();
    SmartPhone phone2 = new GalaxyS();
    phone1.makePhone();
    phone2.makePhone();
  }