void test(int a, int b) { print a + 1; print b + 2; } void test(int a, int b, int c) { print a + 3; print b + 4; print c + 100; } void main() { test(1, 2); test(10, 20, 1); }