contract ExampleContract {
	
	function echo(string calldata input) public pure returns (string memory) {
		return input;
	}
}