// addtwo.cpp : Defines the entry point for the console application.
//


#include <stdio.h>
/* Add two numbers together */
int main(int argc, char *argv[])
{
    int a,b,c;
    a= 3;
    b= 2;
    c= a+b;
    printf ("%d + %d = %d\n",a,b,c);
    return 0;
}
