class richMan():
  def output(self):
      print("Keep the change!")
      
class poorMan():
  def output(self):
      print("Can I get you next time?")


a,b=richMan(),poorMan()
a.output()
b.output()
