#include<string>
string in;
getline(cin,in);//引用string使用getline讀取整段字串,以防止遇到空白斷掉
for(){//跑完整個字串
cout<<int(in[i]);
if()cout<<'_';//在跑的同時判斷是否為最後一個字元
}