fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. size_t index = 2;
  6. printf("%u\n", (index + 1) % 3);
  7. printf("%u\n", (index + 2) % 3);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
0
1