fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. #define PI 3.14
  6. #define CIRCLE_AREA(x) (x * (9/5) + 32)
  7.  
  8.  
  9. int x = 5;
  10. printf("%d", CIRCLE_AREA(x));
  11. return 0;
  12. }
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
37