結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー IobachevskyIobachevsky
提出日時 2016-03-28 22:56:49
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 1,056 bytes
コンパイル時間 667 ms
コンパイル使用メモリ 83,420 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-02 06:48:42
合計ジャッジ時間 1,071 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <sstream>
#include <fstream>
#include <vector>
#include <deque>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <algorithm>
#include <functional>
#include <utility>
#include <bitset>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <stdio.h>
#include <string.h>
using namespace std;

#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define FORD(i, a, b) for(int i = (a); i >= (b); --i)
#define FORE(i, c) for(auto i = (c).begin(); i != (c).end(); ++i)
#define all(v) (v).begin(),(v).end()
 
#define vi vector<int>
#define pii pair<int,int>
#define X first
#define Y second
#define mp make_pair
#define pb push_back
 
#define debug(x) {cerr <<#x <<" = " <<x <<endl; }
#define debugv(x) {{cerr <<#x <<" = "; FORE(itt, (x)) cerr <<*itt <<", "; cerr <<endl; }}
#define debugt(t,n) {{cerr <<#t <<" = "; FOR(it,0,(n)) cerr <<t[it] <<", "; cerr <<endl; }}

#define ull unsigned long long

int main(){
     string s;
     int a,b;
     cin>>a>>b>>s;
     cout<<a+b<<" "<<s<<endl;
}
0