# OrderSystem.py class Contact: def __init__(self, name, email): self.name = name self.email = email class Order: def __init__(self, orderID, contact): self.orderID = orderID self.contact = contact def main(): print("My Application") contact = Contact("Bob Smith", "bob@1234.com") print(contact.name, contact.email) if __name__ == "__main__": main()