#include <stdio.h>
struct cls { char *initial; char *Gender; };
int main() {
    struct cls R[] = {
    {"H.O","Men"},
    {"K.O","Men"},
    {"M.H","Gīl"},
    {"A.M.K","Gīl"},
    {"S.K","Men"},
    {"S.I","Gīl"},
};
    
    puts(R[1].Gender);
    return 0;
}

Embed on website

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