public class CharacterCount { public int count; public char character; public CharacterCount(char c, int i) { character = c; count = i; } }