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