#include "linklist.h"
#include <iostream>
using namespace std;

int main(int argv, char **argc){
        ilist mylist;
        int size = mylist.size();
        cout << "Size of the List is: " << size << endl;
        return 0;
}