fork download
  1. #include <stdio.h>
  2. int main() {
  3. // your code goes here
  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. return 0;
  11. }
Success #stdin #stdout 0s 5296KB
stdin
3
1
4
stdout
NO