#include <iostream>

using namespace std;

struct t {
	int a;
	int b;

	t (int t) : a(t), b(a + 1) {}
};

int main() {
	auto a = t(41);
	cout << a.a << ' ' << a.b << endl;
	
	return 0;
}