// a2.cpp
// startup code for CSI2131 assignment#2

#include <iostream>
#include <fstream>
#include <string>

using namespace std;

// #include "LZdecoder.h" // 'uncomment' this code once LZdecoder is implemented

int main() {
  string inputName, outputName; // input and output file names

  // please do not change how the input is done (next two lines):
  cout<<"Enter (compressed) input file name> "; cin >> inputName;
  cout<<"Enter output file name> "; cin >> outputName;

  // 'uncomment' the next two lines, once LZdecoder is implemented
  // LZdecoder uncompressor; 
  // uncompressor.decode(inputName, outputName); 

  cout<<"Decoding is complete.\n";
  return 0;
}