#include #include int main(int ac, char *av[]) { int t; if (ac < 2) { exit(1); } t = atoi(av[1]); sleep(t); return 0; }