#include <iostream>
using namespace std::string_literals;

template<typename T> void operator+(T&&t) { std::cout << t << std::endl; }

int main() {
	+ "Hello world!"s;
	+ "BOOYA!"s;
	return 0;
}