fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int x = 6;
  6. int y = 4;
  7. int z = 2;
  8. int a = (x+y)/z;
  9.  
  10. printf("%d\n",a);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 4400KB
stdin
Standard input is empty
stdout
5