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