fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a = 37, b = 99, c;
  6. c = a -1;
  7. b = b - c;
  8. a = (c * 100) + b;
  9. printf("%d", a);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 4544KB
stdin
Standard input is empty
stdout
3663