fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a,b,c;
  6. scanf ("%d %d %d",&a,&b,&c);
  7. if (a<b&&b<c){printf("Yes\n");}
  8. else {printf("No\n");}
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.01s 5288KB
stdin
85
4
2
stdout
No