出题人题解。

#include<bits/stdc++.h>
using namespace std;
string str;
int main(){
    cin>>str;
    if(str.find("kkksc03")!=-1){
        cout<<"T";
    }else{
        cout<<"F";
    }
    return 0;
}