contract ExampleContract {

	uint256 x;

	function setX(uint256 newValue) public {
		x = newValue;
	}
	
	function getX() public view returns (uint256) {
		return x;
	}
}