#include <bits/stdc++.h>
using namespace std;
const int inf = 0x3f3f3f3f;
int f[200];
bool ok(int x){
for(int i = 2; i * i <= x; i++){
if(x % i == 0){
return false;
}
}
return x >= 2;
}
int main(){
string s;
cin >> s;
int ma = -inf, mi = inf;
for(int i = 0; s[i]; i++){
++f[s[i]];
}
for(int i = 0; i < 200; i++){
if(f[i]){
ma = max(ma , f[i]);
mi = min(mi , f[i]);
}
}
if(ok(ma - mi)){
cout << "Lucky Word" << endl << ma - mi << endl;
}else{
cout << "No Answer" << endl << ma - mi << endl;
}
return 0;
}