/* CSE 333 Su12 Lecture 2 demo sumof.c */
/* Gribble/Perkins */

/* return sum i+j */
int sumof(int i, int j) {
   return i+j;
}