#include <iostream>
using namespace std;

struct S{
	int a;
	int b;
	S() : a(0), b(1) {}
	void m()
	{
		std::cout << "hello from S::m()\n";
	}
};
int main() {
	S s;
	s.m();
	// your code goes here
	return 0;
}