// editor2

#include<stdio.h>

typedef struct Items{
    int id;
    char name[20];
    int value;
}Items;

int main(){
    int size;
    if(size<0){
        printf("Invalid input");
        return 0;
    }
    Items item[size];
    for(int i=0;i<size;i++){
        scanf("%d %s %d", &item[i].id, item[i].name, &item[i].value);
    }
    printf("ID: %d,\nName: %s,\ %d", item[0].id, item[0].name, item[0].value);
    return 0;
}