void main() { for(int i = 0; i < 10; i++) { test(i); } for(int x = 0; x < 3; ++x) { for(int y = 0; y < 3; y++) { test(x); test(y); } } }