#include<iostream>
using namespace std;
int main()
{
int n;
cin >> n;
string s;
while(n --)
{
cin >> s;
int cnt = 0;
char c;
for(int i = 0;i < s.size();i ++)
{
int j = i;
while(j < s.size() && s[j] == s[i]) j ++; //第一类双指针
if(j - i > cnt)
{
cnt = j - i;
c = s[i];
}
i = j - 1;
}
cout << c << ' ' << cnt << endl;
}
return 0;
}