13 lines
223 B
C++
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");
|
|
} |