int test(); int test(int a, int b) { print 5; return a + b; } void main() { print test(); print test(2, 4); } int test() { return 3; }