#include int sequence(int num) { int count; int n; count=1; // ... complete this section return count; } int main() { int i,j; int max; int temp; int k, c; FILE *infile = fopen("infile1.txt", "r"); while(fscanf(infile,"%d %d", &i, &j) != EOF) { max=0; // ... complete this section printf("%d\t%d\t%d\n", i, j, max); } return 0; }