/* File : sum.c *
* By : *
* login: *
* team : *
* Date : */
/* A program to compute the sum of numbers given on the input */
int main()
{
/* Initialize the sum */
/* Get the first input */
/* While there is more input */
/* Accumulate the sum */
/* Get the next input */
/* Print the results */
}