結果

問題 No.8062 A + B
ユーザー KKT89
提出日時 2020-04-01 21:59:44
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 276 bytes
コンパイル時間 832 ms
コンパイル使用メモリ 83,704 KB
最終ジャッジ日時 2025-01-09 11:58:50
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 3 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <queue>
#include <map>
#include <set>
#include <bitset>
using namespace std;
typedef long long ll;

int main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	ll a,b; cin >> a >> b;
	cout << a+b << endl;
}
0