請計算$a+b$。
一行包含兩個正整數$a, b (0\le a, b\le 10)$。
輸出一行包含一個數字,代表$a+b$的結果。
Q: 要如何輸入、輸出?
A: 你所繳交的程式必須從stdin
(標準輸入)讀取輸入,並且輸出到stdout
(標準輸出)。例如,你可以用C的scanf
或C++的cin
讀取stdin
的輸入,並用C的printf
或C++的cout
輸出到stdout
。
請不要輸出任何除了題目要求的答案以外的文字,否則你將會獲得一個WA(Wrong Answer)。
你的程式不能進行讀/寫外部檔案的動作,否則你將會獲得WA或RE(Runtime Error)。
以下是一個本題的C++/G++範例程式:
#include <iostream>
using namespace std;
int main()
{
int a,b;
cin >> a >> b;
cout << a+b << endl;
return 0;
}
請注意,如果使用C++/G++,main()
函數的回傳型別必須是int
,否則你將會獲得一個CE(Compilation Error)。
以下是一個本題的C/GCC範例程式:
#include <stdio.h>
int main()
{
int a,b;
scanf("%d %d",&a, &b);
printf("%d\n",a+b);
return 0;
}
原TIOJ 1002
No. | Testdata Range | Score |
---|---|---|
1 | 0 | 50 |
2 | 1 | 50 |