/* Prints a message on the screen*/
 #include <stdio.h>
 main()
 {
     printf ("Just one small step for coders. One giant leap for");
     printf (" programmers!\n");
     return 0;
 }