#include <stdio.h>

int main() {
  FILE *fin;

  fin = fopen("exp.txt", "r"); // do not change this line or you will lose marks
  if (!fin) { 
    puts( "Can not open the expression file" );
    return 1;
  }
  // read the expression, evaluate it, and print the result.
}
