public class Symphony {
 public int music, playing, conducting;
 public int rating () {
  return music + playing + conducting;
 }
}
