#include <iostream>
using namespace std;

struct A
{
	A(int y) : x{y} {}
	A() : A(4) {}
	int x = 0;
};

int main()
{
	cout << A{}.x << '\n';
	return 0;
}