Test Message

a002: 簡易加法

內容

請寫一個程式,讀入兩個數字,並求出它們的和。


輸入

每一組輸入有兩個整數,絕對值皆小於 106。

5 10
1 2

輸出

對於每組輸入,輸出該兩整數的和。

15
3


解題思路

簡單的加法


完整程式碼

AC (2ms, 104KB)
#include <stdio.h>

int a, b;

int main()
{
while (scanf(" %d %d", &a, &b) == 2)
{
printf("%d\n", a + b);
}
return 0;
}