/**********************************
  File:  hw1p3.c

  take two integers and print out the larger
***********************************/

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

void main() {

  int a,b;

  printf("first number? ");
  a=GetInteger();

  printf("second number? ");
  b=GetInteger();

  if (a<b) {
    printf("%d is the larger number\n",b);
  } else {
    printf("%d is the larger number\n",a);
  }
}

