#include <stdio.h>

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

  printf ("The integer value of the 1st argument is: %i\n", atoi(argv[1]));

}
