#include <iostream>
using namespace std;
#include <stdlib.h>

int main()
{
    system("/bin/ls -l");
    cout << "after call to system()\n";
}

