結果

問題 No.8058 M + D Problem
ユーザー betrue12betrue12
提出日時 2020-04-01 21:25:00
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 133 bytes
コンパイル時間 3,666 ms
コンパイル使用メモリ 190,860 KB
最終ジャッジ日時 2025-01-09 11:37:27
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 14 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    int A, B;
    cin >> A >> B;
    cout << A+B << endl;
    return 0;
}
0