提交时间:2024-04-19 13:03:09
运行 ID: 143836
#include<bits/stdc++.h> using namespace std; int main(){ string s,t; cin>>s; while(cin>>t) if(int(s.find(t))==-1){ cout<<"false"; return 0; } cout<<"true"; return 0; }