fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int x, y, c;
  6. scanf("%d", x);
  7. scanf("%d", y);
  8. c = x > y ? 23 : 45;
  9. printf("%d", c);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
45