#include <iostream>
using namespace std;

class S{
	private:
		static const int testValue = 5;
	public:
		static int getTestValue0(){
			return testValue;
		}
		static int getTestValue1(){
			return S::testValue;
		}
};

int main() {
	cout << "Test Value is: " << S::getTestValue0()  << endl;
	cout << "Test Value is: " << S::getTestValue1()  << endl;
	
	return 0;
}