fork download
  1. #include <stdio.h>
  2.  
  3. int a, b, c, d, result;
  4.  
  5. int main(void) {
  6.  
  7.  
  8. int a = 4;
  9. int b = 12;
  10. int c = 37;
  11. int d = 51;
  12. result = d % a * c + a % b + b;
  13. printf("%d", result);
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 4416KB
stdin
Standard input is empty
stdout
127