#include<stdio.h>
struct st{
    int ID;
    char Name;
    int Value;
}
int main(){
    int n;
    scanf("%d",&n);
    if(n<0){
        printf("Invalid input");
        return 0;
    }
    struct st st[10];
    for(int i=0;i<n;i++){
        scanf("%d%s%d",st[i].ID,st[i].Name,st[i].Value);
    }
}