#include <iostream>

int foo()
{
	std::cout << "Foo\n";
}

int main()
{
	1?foo():0;  // if (true) foo()
	0?:foo();   // if (!false) foo()
}