If I'm understanding your question correctly, you shouldn't need any other variables.
Can you do something like this:
int minimumWage;
int poverty;
function Update () {
if(minimumWage < poverty/10)
minimumWage = poverty/10;
}
↧