fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int a,b,c;
  5. scanf("%d %d %d",&a,&b,&c);
  6. if ((a<b)&&(b<c))
  7. printf("Yes");
  8. else
  9. printf("No");
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0s 5292KB
stdin
9 6 8
stdout
No