fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int a, b, c, d;
  6. cin >> a >> b >> c >> d;
  7. if (a < b && b < c && c < d)
  8. cout << "Crescator";
  9. else if (a > b && b > c && c > d)
  10. cout << "Descrescator";
  11. else
  12. cout << "Nemonoton";
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5316KB
stdin
Standard input is empty
stdout
Nemonoton