#include <stdio.h>

f() {
	return 0;
}

main(void) {
	printf("%d\n", f());
	printf("%d\n", f(42));
	printf("%d\n", f(42, 23));
	return 0;
}
