diff options
| -rw-r--r-- | BoyOrGirl.cpp | 12 | ||||
| -rwxr-xr-x | ConsecutivePointsSegment.cpp.out | bin | 0 -> 75408 bytes |
2 files changed, 12 insertions, 0 deletions
diff --git a/BoyOrGirl.cpp b/BoyOrGirl.cpp new file mode 100644 index 0000000..1ce7fff --- /dev/null +++ b/BoyOrGirl.cpp @@ -0,0 +1,12 @@ +#include<bits/stdc++.h> +using namespace std; +int main() { + string s; + cin >> s; + set<char> st; + for(auto ch : s) { + st.insert(ch); + } + cout << (st.size() % 2 != 0 ? "IGNORE HIM!" : "CHAT WITH HER!") << endl; +} + diff --git a/ConsecutivePointsSegment.cpp.out b/ConsecutivePointsSegment.cpp.out Binary files differnew file mode 100755 index 0000000..5a88f54 --- /dev/null +++ b/ConsecutivePointsSegment.cpp.out |
