#include <iostream>
#include <cstring>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <time.h>
#include <string>
#include <map>
#include <stack>
#include <vector>
#include <set>
#include <queue>
#define inf 0x3f3f3f3f
#define mod 1000000007
typedef long long ll;
using namespace std;
const int N=101005;
double m=1e7;
int s[N];
bool tt;
string str;
int n;
struct man {
string str;
int num;
};
bool check(string a,string b) {
for(int i=0; i<a.size(); i++) {
if(b[i]!=a[i])return false;
}
return true;
}
queue<man>q;
void bfs() {
while(!q.empty()) {
man t=q.front();
q.pop();
int nn=t.str.size();
string ss=str.substr(t.num,nn);
if(nn+t.num>n) {
if(check(ss,t.str)) {
tt=true;
printf("%d\n",nn);
cout<<t.str<<endl;return;
}
}
else {
if(ss==t.str){man k=t;k.num+=nn;q.push(k);}
}
}
}
int main() {
while(cin>>str) {
memset(s,0,sizeof(s));
int cnt=0;tt=false;
n=str.size();
bool flag=false;
for(int i=0; i<str.size(); i++) {
if(str[i]<97)str[i]+=32;
if(str[i]==str[0])s[cnt++]=i;
if(str[i]!=str[0])flag=true;
}
if(!flag) {
cout<<"1"<<endl<<str[0]<<endl;
}
else {
for(int i=1; i<cnt; i++) {
string g=str.substr(0,s[i]);
man G;
G.num=s[i];
G.str=g;
q.push(G);
bfs();
if(tt)break;
}
}
if(!tt)cout<<n<<endl<<str<<endl;
}
return 0;
}