function howMuchEtherYouHave() public view returns (uint256) {
	return msg.sender.balance;
}

function howMuchEtherTheyHave(address them) public view returns (uint256) {
	return them.balance;
}