OJ/3834/6/6.cpp
2025-01-14 20:19:17 +08:00

13 lines
223 B
C++

#include <iostream>
using namespace std;
int main()
{
ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
string s;
char c;
cin >> s >> c;
printf("%s", (s.find(c) == string::npos) ? "false" : "true");
}