#include <stdio.h>
int main()
/* A program to add two numbers together */
{
    int a,b,c;
    a= 3;
    b= 2;
    c= a+b;
    printf ("%d + %d = %d\n",a,b,c);
    return 0;
}


