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