結果
| 問題 | 
                            No.1088 A+B Problem
                             | 
                    
| ユーザー | 
                             | 
                    
| 提出日時 | 2020-06-24 01:58:43 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 4 ms / 2,000 ms | 
| コード長 | 275 bytes | 
| コンパイル時間 | 920 ms | 
| コンパイル使用メモリ | 77,608 KB | 
| 最終ジャッジ日時 | 2025-01-11 09:44:30 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 10 | 
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
using namespace std;
typedef long long int ll;
constexpr ll mod=1e9+7;
int main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
 	int a,b; cin >> a >> b;
 	cout << a+b << endl;
}