fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int x = 100;
  6. int y = 20;
  7. int result;
  8. result = x / y;
  9. printf("%d", result);
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
5