#include #include #include int main( int argc, char **argv ) { int st = 1; if (argc > 1) { st = atoi(argv[1]); } Sleep(st * 1000); return 0; }