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