#35039: c++ AC


yp11151208@yphs.tp.edu.tw (910-42葉宏湧)

學校 : 臺北市私立延平高級中學
編號 : 197051
來源 : [203.72.178.3]
最後登入時間 :
2024-12-03 11:37:09

#include<bits/stdc++.h>
using namespace std;
main(){
    ios_base::sync_with_stdio(false);
    string s,s1;
    while(cin>>s>>s1){
        cout<<'|'<<s;
        for(int i=0;i<10-s.size();i++) cout<<' ';
        cout<<'|'<<setw(10)<<setfill(' ')<<s1<<'|'<<endl;
    }
}