#include <iostream>

struct MyClass {
	int i;
	std::string s;
	friend std::ostream& operator<< (std::ostream& os, MyClass& m) {
		os << "i = " << m.i << std::endl;
		os << "s = " << m.s << std::endl;
		return os;
	}
};

int main() {
	// your code goes here
	MyClass m = {12345678, "Pinus"};
	std::cout << m << std::endl;
	return 0;
}