// chapter1.cpp : Defines the entry point for the console application. // #include "stdafx.h" int main(int argc, char* argv[]) { int a; int b; int sum; a=1; b=1; sum=a+b; printf("sum is %d\n", sum); return 1; }