#include <stdio.h>

int main() {
  FILE *fin,*fout;
 
  fin=fopen("mystery.img","rb"); // do not change these lines
  fout=fopen("output.img","wb"); // or you will lose marks

  // the rest of main goes in here

  return 0;
}
