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