1 #include <stdio.h> 2 3 int main(void) 4 { 5 int a, b, c; 6 scanf("%d", &a); 7 scanf("%d", &b); 8 c = a + b; 9 printf("%d ", c); 10 return 0; 11 }