整数を2つ読み取り、その和(足し算)を出力してください。
3 5
8
10 20
30
int a, b;
scanf("%d %d", &a, &b);
%d
&a
&b
&
a + b
printf("%d\n", a + b);