/* 
  hello world

  gcc io_example.c -o io_example

*/

#include <stdio.h>

int main (int argc, char *argv[]) {

   int n;

   printf("hello.\n");   // in-line comment
   scanf("%d", &n);
   printf("the number is %d\n", n); 

   return 0;
}
