#include <unistd.h>
#include <iostream>

int main() {
	int x = execl("ls", "");
	std::cout << x << std::endl;
}