#include <iostream>
bool return_true()
{
	std::cout<<"FUNKCJA 1\n";
	return true;
}
bool return_true_and_print()
{
	std::cout<<"FUNKCJA 2\n";
	return true;
}
int main()
{
	if(return_true() || return_true_and_print())
	{
		std::cout<<"hello cruel world of laziness\n";
	}
	return 0;
}