#include <stdio.h>
// Please use the man pages of opendir etc to find out more #include's you need.

int main(int argc, char *argv[])
{
  if (argc < 2) {
    fprintf(stderr, "not enough arguments\n");
    return 1;
  }


  return 0;
}
