#include <stdio.h> int main () { int a,b,sum; a=123,b=456; sum=a+b; printf("sum is %d\n,a is %d\n,b is %d\n",sum,a,b); return 0; }