for 201 B

1234567891011
  1. void main() {
  2. for(int i = 0; i < 10; i++) {
  3. test(i);
  4. }
  5. for(int x = 0; x < 3; ++x) {
  6. for(int y = 0; y < 3; y++) {
  7. test(x);
  8. test(y);
  9. }
  10. }
  11. }