#include <iostream>#define F(a, b, c) f(c)void f(int a){ std::cout << a << std::endl;}int main() { F(9,,4); return 0;}