/*Copyright (C) 1992, 1996 by Thomas Glen Smith. All Rights Reserved.*/
/* itimes APL2 V1.0.0 **************************************************
* Called by drop, formdfy, getfact, indexm, innrprda, and transpou. *
* Returns the integer product of its two arguments. *
***********************************************************************/
#define INCLUDES 0
#include "includes.h"
int itimes(left,rite)
int left,rite;
{
return(left*rite);
}