void test(int a, int b) {
    test(a + 1);
    test(b + 2);
}

void test(int a, int b, int c) {
    test(a + 3);
    test(b + 4);
    test(c + 100);
}

void main() {
    test(1, 2);
    test(10, 20, 1);
}