hello.c 97 B

12345678
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main(void) {
  4. puts("hello");
  5. return EXIT_SUCCESS;
  6. }