aboutsummaryrefslogtreecommitdiff
path: root/BoyOrGirl/BoyOrGirl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'BoyOrGirl/BoyOrGirl.cpp')
-rw-r--r--BoyOrGirl/BoyOrGirl.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/BoyOrGirl/BoyOrGirl.cpp b/BoyOrGirl/BoyOrGirl.cpp
deleted file mode 100644
index 1ce7fff..0000000
--- a/BoyOrGirl/BoyOrGirl.cpp
+++ /dev/null
@@ -1,12 +0,0 @@
-#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;
-}
-