9 lines
145 B
C
9 lines
145 B
C
// Standard input-output streams
|
|
#include <stdio.h>
|
|
int main()
|
|
{
|
|
int a, b;
|
|
scanf("%d%d", &a, &b);
|
|
printf("%d\n", a + b);
|
|
return 0;
|
|
}
|