pragma solidity ^0.4.23;


contract SimpleContract {
    uint public a;
  
  function setNum(uint _num) public {
      a = _num;
  }
}