/****************************************************************************
 * math1.c
 *
 * Computer Science 50
 * David J. Malan
 *
 * Computes a total but does nothing with it.
 *
 * Demonstrates use of variables.
 ***************************************************************************/
 
#include <stdio.h>
 
int
main(int argc, char *argv[])
{
    int x = 1;
    int y = 2;
    int z = x + y;
}