fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main(){
  5. ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr);
  6. int n; cin >> n;
  7. cout << (n & 1 ? "le" : "chan");
  8. return 0;
  9. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
chan