#include using namespace std; /////////////////// メイン /////////////////// int main () { //////////////////// 入力 //////////////////// int w, h; char c; cin >> w >> h >> c; //////////////// 出力変数定義 //////////////// vector result(h,string(w,c)); //////////////////// 処理 //////////////////// for (int i=0; i