contract MyContract {
    address public beneficiary;

    constructor(address _beneficiary) {
        beneficiary = _beneficiary;
    }
}