#include <iostream>

struct Test {
	const int value = 10;
	const int value2 = 99;
};

int main() {
	Test var1;
	Test var2{777};
	std::cout << var1.value << " " << var1.value2 << " " << std::endl;
	std::cout << var2.value << " " << var2.value2 << " " << std::endl;

	return 0;
}