sleepprog.c 87 B

1234567
  1. #include<unistd.h>
  2. int main(int argc, char **argv) {
  3. sleep(1000);
  4. return 0;
  5. }