My health bar error

Hello,
In this script it says that i need to enter ‘;’ in this line ’ var adjust : int Health * 3;’

var healthTexture : Texture2D;
var healthBorder : Texture2D;
var MaxHealth = 100;
var Health : int;



function OnGUI () {

	GUI.DrawTexture(Rect(43,Screen.height - 65,314,36), healthBorder);
	var adjust : int Health * 3;
	GUI.BeginGroup(Rect(55,Screen.height - 55,adjust,15));
	GUI.DrawTexture(Rect(0,0,290,15), healthTexture);
	GUI.EndGroup();
}

Thanks for helping

It should be:

var adjust : int = Health * 3;

Ahhh thanks ! that was soo simple and i didnt though about that