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