fork download
  1. #include <stdio.h>
  2.  
  3. int main ()
  4. {
  5. int x ;
  6. int y = 3;
  7. int z = 0;
  8.  
  9. x = y;
  10. y *= x;
  11. z= x + y + x * y;
  12. printf("%d d% %d" ,x ,y ,z);
  13.  
  14. }
  15.  
  16.  
  17.  
  18.  
Success #stdin #stdout 0s 9416KB
stdin
Standard input is empty
stdout
3 d%d