D.cpp 192 B

123456789101112
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. int main() {
  4. int a, b, c;
  5. cin >> a >> b >> c;
  6. if (a < b && b < c)
  7. cout << "Yes" << endl;
  8. else
  9. cout << "No" << endl;
  10. return 0;
  11. }