/**********************************
  File:  hw1p1.c

  variant of hello, world.
***********************************/


#include <stdio.h>

void main() {

  printf("Hello there, Peter.\n");
  printf("Hello there, Bob.\n");
  printf("Hello there, Bunny.\n");
}

