#include <stdio.h>

int main() {
  FILE *f;
 
  f=fopen("id.txt","r"); // do not change this line in any way or you will lose marks

  // the rest of main goes in here

  return 0;
}
