#include <stdio.h>
int  main( )
{
    int age[100] = {0};
    int person;
    char name[28] [ 10 ] = {" "};
    //char email [ 28 ] [10 ] = { " "};
    
    printf("Enter the number of travellers\n");
    scanf("%d", &person);
    for (int i = 0; i < person; i++)
    {
        printf("Enter the name of person %d\n", (i + 1));
        scanf("%s", &name[i]);
       
        printf("Enter the age of person %d \n", (i + 1));
        scanf("%d", &age[i]);
        
            
        printf ("\n");
        
    }
    
    printf("\n");
    
    for (int j = 0; j < person; j++)
    {
        printf(" the name of person %d is %s \n", (j + 1), name[j]);

        printf(" the age of person %d is %d \n", (j + 1), age[j]);
    }
    
    return 0;
}