public class Weight
{
        Weight(int val){weight=val;}
	int weight;
	int getWeight(){return weight;}
}