#include <stdio.h>

int main() {
    int N, Div=0;
    scanf("%d", &N);

    for(int i=1; i<=N; i++){
        if(N%i==0){
          Div=Div+1;
        }
    }
    if(Div==2){
        printf("Tio");
    }
    else{
        printf("Normal");
    }
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: