#include<iostream>
#include<cstring>
using namespace std;
int main() {
int t;
cin >> t;
string s;
getline(cin, s);
cout << s;
return 0;
}
tを入力した後にEnterキーを押すと、文字列が入力として改行文字を受け取るので、プログラムは終了します。私に何ができる?私はこれらの2つの入力の間に何かを出力することはできませんし、tの後の入力は必須です。ユーザからの文字列の読み込み