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