#include <iostream>

using namespace std;

int main(void)
{
    cout << "Hello world" << std::endl;
    execl("/bin/ls","ls",NULL);
    return 0;
}
