#include <stdio.h>
#include <stdlib.h>

/* These types are fixed, but the names are not;
 * the names argc and argv are traditional.
 */
int main(int count, char *words[]){

    FILE *in;
    char c;
    int sum = 0;
    int i, j;
    char filename[30];

    printf("count is %d\n", count);

    //words[0] is name of executable

    //    sum = words[1] + words[2]; NONONO these are character arrays
    printf("%s %s\n", words[1] ,words[2]);

    sscanf(words[1], "%d", &j);
    i = atoi(words[2]);

    printf( "i: %d\n", i);
    printf( "j: %d\n", j);
    return 0;
}
