#include <stdio.h>

/* Terry Harvey CISC105 Section 21 TA Aaron*/

/* Horrible program that requires really wierd data formatting */
/* Uses parallel arrays */

int main(){

    char grades[4];
    int ids[4];
    int i;
    
    printf("Enter a bunch o data in a weird format: ");

    for(i = 0; i < 4; i++){
        scanf("%d%c", &ids[i], &grades[i]);
    }

    for(i = 0; i < 4; i++){
        printf("i is: %d; id: %d grade: %c\n", i, ids[i], grades[i]);
    }

    return 0;
}
