Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <bits/stdc++.h>
- using namespace std;
- int main() {
- int n, m;
- cin >> n >> m;
- if (146 <= n && n <= 155 && 146 <= m && m <= 155) {
- if (n < m) {
- cout << "Conor";
- } else if (n > m) {
- cout << "Khabib";
- } else {
- cout << "Nobody";
- }
- } else {
- cout << "Cancelled";
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement