/* * Use those methods for question 3 */ static long parseLong(String s){ return Long.parseLong(s); } static char parseSecondChar(String s){ return s.charAt(1); }