import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main{
public static void main(String[] args) throws NumberFormatException, IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String str=br.readLine();//输入的字符串
int[] times=new int[26];//26个字母的出现次数
for(int i=0;i<str.length();i++) {
if(str.charAt(i)>='a'&&str.charAt(i)<='z') {
int j=str.charAt(i)-'a';
times[j]++;
}else if(str.charAt(i)>='A'&&str.charAt(i)<='Z') {
int j=str.charAt(i)-'A';
times[j]++;
}
}
int max=times[0],maxIndex=0;//最大值和最大值字母序列
// 遍历次数数组获得最大值和最大值字母序列
for(int i=0;i<times.length;i++) {
if(times[i]>times[maxIndex]) {
maxIndex=i;
max=times[i];
}
}
char maxCh=(char)('a'+maxIndex);
System.out.print(maxCh+" "+max);
}
}