contract ExampleContract {
  
	function helloWorld() public pure returns (uint256) {
		return 100;
	}
  
	function haloDunia() public pure returns (bool) {
		return true;
	}
}