Code has been added to clipboard!

Solidity Input and Output Parameters Example 2

Example
pragma solidity ^0.4.0;

contract SimpleContract {
    function taker(uint _x, uint _y) {
        // execute code using _x and _y.
    }
}