結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー gedy01221406gedy01221406
提出日時 2019-09-26 00:49:06
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 181 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 65,584 KB
最終ジャッジ日時 2025-01-07 19:08:30
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main() {
    int i,j;
    int x;
    char str[10];
    cin >> i >> j;
    cin >> str;
    x=i+j;
	cout << x << " " << str;
	return 0;
}
0