可能な入力 1M 2M .. 11M および 1Y (M および Y は月を表す) があり、「somestring1 somestring2.... and somestring12」を出力したい M および Y が削除され、最後の文字列が 12 に変更されることに注意してください
Example: input "11M" "hello" output: hello11
input "1Y" "hello" output: hello1
char * (const char * date, const char * somestr)
{
// just need to output final string no need to change the original string
cout<< finalStr<<endl;
}