GUI label Problem

Hi i have a problem in GUI Label

GUI.Label (Rect (60, 34,150,70)," LANE NO : 1
TIME(%) : " +Lane1.ToString(),TextStyle );

it will display like this

LANE NO : 1

TIME(%) : (SOME VALUE)

but i want percentage symbol to be displayed after the value like

LANE NO : 1

TIME : (SOME VALUE)%

plz help

Then you should do this:

GUI.Label (Rect (60, 34,150,70)," LANE NO : 1 n TIME: " + Lane1.ToString() + "(%)",TextStyle );