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