void test(); void test(int a); void main() { test(); test(1); test(); } void test() { print 4; print 5; } void test(int a) { print a; print 6; }