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