/* File: roberts.c
   Using GetInteger() in the Roberts Library.
*/

#include <stdio.h>
#include "simpio.h"

main() {
   int n ;

   printf("Enter an integer: ") ;
   n = GetInteger() ;
   printf("n = %d\n", n) ;
}
