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