#include <stdio.h>
int main()
{
    int a=3,b=5,c,d;
    c=a+b;
    d=a-b;
    printf("a+b=%d,a-b=%d\n",c,d);
    return 0;
}