#include <stdio.h>
#include <string.h>
#include <ctype.h>

int main(void) {
    char str[100] = {0};
    while (scanf("%s", str) != EOF) {
        int length = strlen(str);
        int type[4] = {0};
        if (length <= 8) {
            printf("NG\n");
            continue;
        }
        for(int i = 0; i< length; i++) {
            if (islower(str[i]) != 0) {
                type[0] = 1;
            } else if (isupper(str[i]) != 0) {
                type[1] = 1;
            } else if (isdigit(str[i]) != 0) {
                type[2] =1;
            } else {
                type[3] =1;
            }
        }
        if((type[0] + type[1] + type[2] + type[3]) < 3 ) {
            printf("NG\n");
        } else {
            int flag =0;
            for(int i = 0 ; i< length-5; i++) {
                for(int j = i+3; j < length-3; j++) {
                    if (str[i] == str[j] && str[i+1] == str[j+1] && str[i+2] == str[j+2]) {
                        flag = 1;
                    }
                }
            }
            if (flag == 1) printf("NG\n");
            else printf("OK\n");
        }
    }
    return 0;
}