結果

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

ソースコード

diff #

#include <iostream>
using namespace std;

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