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