#include <iostream>
#include <string>
using namespace std;
int main(){
string str;
//多组测试用例
while(cin >> str)
{
//第一道检测
//检测未通过时不能跳出程序,使用跳转符跳过剩余检测
if(str.size() <= 8) goto NG;
//第二道检测
//检测未通过时不能跳出程序,使用跳转符跳过剩余检测
//用标志组实现相同检测的覆盖
int flag[4] = {0};
for(int i = 0; i < str.size(); ++i)
if(str[i] >= 'a' && str[i] <= 'z') flag[0] = 1;
else if(str[i] >= 'A' && str[i] <= 'Z') flag[1] = 1;
else if(str[i] >= '0' && str[i] <= '9') flag[2] = 1;
else flag[3] = 1;
if(flag[0] + flag[1] + flag[2] + flag[3] < 3) goto NG;
//第三道检测
//检测未通过时不能跳出程序,使用跳转符跳过剩余检测
//直接检测三字符是否存在重复的情况
for(int i = 0; i <= str.size()-6; i++)
for(int j = i+3;j <= str.size()-3;j++)
if(str[i] == str[j] && str[i+1] == str[j+1] &&str[i+2] == str[j+2]) goto NG;
OK:
cout << "OK" << endl;continue;
NG:
cout << "NG" << endl;
}
return 0;
}