/*
*  Programmer:  Myron Fenstershultz
*       Class:  CS 201.01  Computer Science I  Fall 1999
*  Instructor:  Delcher
*     Written:  8 Sep 99
*
*  Programming Assignment #0
*
*  This program
*
*/

#include  <assert.h>
#include  <ctype.h>
#include  <errno.h>
#include  <float.h>
#include  <limits.h>
#include  <locale.h>
#include  <math.h>
#include  <signal.h>
#include  <stdarg.h>
#include  <stddef.h>
#include  <stdio.h>
#include  <stdlib.h>
#include  <string.h>
#include  <time.h>


void  Wait_For_Non_Blank
(void);



main  ()

  {
    printf ("Myron Fenstershultz  Programming Assignment #0\n");


   Wait_For_Non_Blank ();

   return  0;
  }



void  Wait_For_Non_Blank
(void)

//  Read characters from standard input (i.e., the keyboard)
//  until a non-whitespace character is entered.

  {
   while (isspace (getchar ()))
     ;

   return;
  }