/*
 * hw2p2.c - solution to hw1 problem 2
 *
 */

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

void main()
  {
  int firstPuppetYear = 1981;
  int ageOfCollection = 2001 - firstPuppetYear;
  printf("My antique puppet collection is %d years old.\n", ageOfCollection);
  }

