#include int main(void) { int a = 2; int b = 3; int c = a + b; printf("a + b = %d\n", c); return 0; }