class Symphony
{
	int music, conducting, playing;

	double rating()
	{
		return (1.2 * music + 0.95 * conducting + playing);
	}
}
