hardcore day (1 hard (#2721) , 2 hard CB school assignment)
//// 1990
//import java.util.Scanner;
//public class Main
//{
// public static void main(String[] args)
// {
// Scanner input = new Scanner(System.in);
// String letter = input.next();
// int sum = 0;
// for(int i = 0; i < letter.length(); i++)
// {
// int ascii = (int)(letter.charAt(i));
// sum += ascii -48;
// }
// if(sum % 3 == 0)
// {
// System.out.print("1");
// }
// else
// System.out.print("0");
// }
//}
//// 2721 super wrong
//import java.util.Scanner;
//public class Main
//{
// public static void main(String[] args)
// {
// Scanner input = new Scanner(System.in);
// String first = input.next();
// int ascii = (int)(first.charAt(first.length()-1));
// int count = 0;
// for(int i=0; i<2; i++)
// {
// String next = input.next();
// if((int)(next.charAt(next.length()-1)) == ascii)
// {
// count += 1;
// }
// }
// if(count == 2)
// System.out.print("good");
// else
// System.out.print("bad");
// System.out.println(first + " " + ascii + " " + count);
// }
//}
//// FIXED 2721 don't forget .equals instead of == for string!
//import java.util.Scanner;
//public class Main
//{
// public static void main(String[] args)
// {
// Scanner input = new Scanner(System.in);
// String first = input.next();
// int len = first.length()-1;
// String letter = first.substring(len, len+1);
// int count = 0;
// for(int i=0; i<2; i++)
// {
// String next = input.next();
// int lenn = next.length()-1;
// if(next.substring(0,1).equals(letter))
// // here I used == by accident and code didn't work
// {
// count += 1;
// }
// letter = next.substring(lenn, lenn+1);
// }
// if(count == 2)
// {
// if(letter.equals(first.substring(0,1)))
// {
// System.out.print("good");
// //remember to check last word back == first word front
// //remember, again, to use equals
// }
// else
// System.out.print("bad");
//
// }
// else
// System.out.print("bad");
// }
//}
//// school unit4 Developing Algorithms Using Strings Quiz Q1
//import java.util.Scanner;
//public class Main
//{
// public static void palindromeChecker(String str)
// {
// String noSpace = removeSpaces(str);
// String flipped = reverseString(noSpace);
// if (noSpace.equals(flipped))
// {
// System.out.print(str + " is a palindrome");
// }
// else
// {
// System.out.print(str + " is not a palindrome");
// }
// }
//
//
// public static String removeSpaces(String st)
// {
// String saved = "";
// for(int i=0; i<st.length();i++)
// {
// if(!(st.substring(i, i+1).equals(" ")))
// {
// saved += st.substring(i, i+1);
// }
// }
// return saved;
// }
//
// public static String reverseString(String strr)
// {
// String result = "";
// for (int i = 0; i < strr.length(); i++)
// {
// String a = strr.substring(i, i + 1);
// result = a + result;
// }
// return result;
// }
//
// public static void main(String[] args) {
// Scanner input = new Scanner(System.in);
// String in = input.nextLine();
// palindromeChecker(in);
//
// }
//}
////school Unit 4 Progress Check FRQ Q1
//public class Main
//{
// public static void main(String[] args)
// {
// String str = "CCAAAAATTT!";
//
// char x = str.charAt(0);
// char maxchar = str.charAt(0);
// int cnt=1;
// // one bc the letter itself counts
// int max = 1;
// // one bc minimum count is also 1, but 0 also works
//
// for(int i = 1; i < str.length(); i++)
// // i starts at 1 cuz x location is charAt(0) so you gotta look ahead to 1
// {
// if(x==str.charAt(i))
// {
// cnt++;
// // if previously saved letter equal to this future letter, count 1 up
// }
// else
// {
// cnt=1;
// // if previously saved letter != this future letter, reset count
// }
// if(max<cnt)
// {
// max = cnt;
// maxchar = x;
// // renew max count and max-counted-character if current count is higher
// }
// x = str.charAt(i);
// // change letter to the future letter (keep moving on)
// }
// System.out.println(maxchar+" "+max);
// }
//}