题号:NC295126
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 256 M,其他语言512 M
64bit IO Format: %lld
题目描述
Recently, Colin found that DeepSeek is such a useful AI that he can always give it problems he meets and receive lots of good suggestions, especially when Colin turns on the DeepThink option: DeepSeek will show the procedure of thinking, and it makes everything look so clear and convincing!
Although DeepSeek's thinking procedure does look like a human's, Colin found a phenomenon that always starts with, "Okay, so I want to figure out how to..."
Colin wants to build an extraordinary AI by himself: ColinSeek, but since Colin knows too little about AI, he decides to start by imitating. Now, please help Colin write the very first code for the ColinThink option of ColinSeek:
When the user asks in the format "How to xxx?", show the thinking procedure as "Okay, so I want to figure out how to xxx." The last part (xxx) is the same as the user's question.
输入描述:
A single line represents the user's question. The input is guaranteed to start with "How to " and end with "?". The input between these two parts consists of lower English letters, digits, and blank spaces. It's guaranteed that the input size is larger than 1 KB and less than 16 KB.
输出描述:
Output the thinking procedure of ColinSeek, as described in the description.
示例1
输入
复制
How to win the champion of gxcpc?
输出
复制
Okay, so I want to figure out how to win the champion of gxcpc.
示例2
输入
复制
How to solve these 13 questions ?
输出
复制
Okay, so I want to figure out how to solve these 13 questions .