ZJANS

A+B problem (駭客題)

Easy Last Update: 2026/01/20
cpp

解法一

✅ 完整代碼

評分結果(參考) : AC (1ms, 316KB)

#include<bits/stdc++.h>
#define int long long
using namespace std;

signed main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    cout << "1000000000000 1000000000000";
    return 0;
}