import java.io.*; class TennisBall { String color; TennisBall (String color) { this.color = color; } String getColor () { return color; } }