/* Program suite to illustrate input of several numbers */
/*    this is program 2 */

#include <stdio.h>

int
main (void)
{
  double a, b;
  int numRead;
  
  printf ("part 2:  reading two values, separated by hyphen\n");

  printf ("      enter values: ");
  numRead = scanf ("%lf-%lf", &a, &b);

  printf ("      %d values read:  %lf  %lf\n\n", numRead, a, b);

  /* interesting test cases:
          1.5-3.5
          1.5'2.5  */
  return 0;
} // main
