#53496: cpp ans


1130335@stu.wghs.tp.edu.tw (Quincy)

學校 : 臺北市私立薇閣高級中學
編號 : 294858
來源 : [60.248.154.139]
最後登入時間 :
2025-09-19 12:47:48

#include <iostream>
using namespace std;

int main() 
{
  string s;
  while(cin>>s){
    char f=s[0];
    f=f-32;
    cout<<f;
    s.erase(0,1);
    cout<<s<<endl;
  }
    return 0;
}