2 3
5
1 #include<stdio.h> 2 int main( ) { 3 int a, b; 4 scanf("%d%d" , &a, &b); 5 printf("%d ", a + b); 6 }