TopCoder

Caido
主唱太拼命了

User's AC Ratio

87.8% (65/74)

Submission's AC Ratio

72.5% (185/255)

Tags

Description

給定整數 $a$ 和 $b$,請輸出 $a+b$。

以下為提供的解法,請構造出一筆滿足題目條件的測資讓該程式碼 WA。

#include <iostream>
using namespace std;

int main() {
    long long a, b;
    // store a + b in ans
    int ans;
    cin >> a >> b;
    ans = a + b;
    cout << ans << "\n";
}

Input Format

輸入只有一行,此行輸入兩個整數 $a,b$。

  • $0\le a,b\le 2\times 10^ 9$

Output Format

輸出 $a+b$。

Sample Input 1

4 9

Sample Output 1

13

Hints

Problem Source

Subtasks

No. Testdata Range Constraints Score
1 0 無特別限制。 100

Testdata and Limits

No. Time Limit (ms) Memory Limit (VSS, KiB) Output Limit (KiB) Subtasks
0 1000 262144 65536 1