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