#include using namespace std; int main(){ vector cnt(8); string N; cin >> N; int sz = N.size(); sort(N.begin(), N.end()); N.erase(unique(N.begin(), N.end()), N.end()); if(N.size() != 1) cout << 1 << endl; else{ cout << 1 << ' ' << int(N[0] - 'A' + 2) << endl; } }