#39405: _cpp


yp11251120@yphs.tp.edu.tw (908-43劉濟緯)

學校 : 臺北市私立延平高級中學
編號 : 237257
來源 : [203.72.178.2]
最後登入時間 :
2025-10-08 16:37:14

#include <bits/stdc++.h>

using namespace std;

int main()
{
    ios::sync_with_stdio(0); 
    cin.tie(0);
    string a,b;
    cin>>a>>b;
    cout<<"|"<<a;
    for(int i=0; i<(10-a.length()); i++)
    {
        cout<<" ";
    }
    cout<<"|";
    for(int i=0; i<(10-b.length()); i++)
    {
        cout<<" ";
    }
    cout<<b<<"|"<<endl;
    
    
}