fork download
  1.  
  2. #include <stdio.h>
  3.  
  4. #define N 5
  5. #define Y(n) ((N+1)*n)
  6.  
  7. int main()
  8. {
  9. int z = 2*(N+Y(3+2));
  10. printf("%d", z);
  11. }
Success #stdin #stdout 0s 5296KB
stdin
Standard input is empty
stdout
50