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