/* program.c */

#include <stdio.h>

/* define prototypes for the functions */
void area(void);

int main()
{
  area();
}
