Complete the class definition.
class shoe:
def
(self, style, color):
self.style = style
self.color = color

def __str__(self):
return self.style + ' ' + self.color