#include #include "JointAccount.h" int main() { JointAccount bill_mary (123456, 2500, "045-22-5555", "045-33-7777"); cout << bill_mary.balance() << endl; bill_mary.deposit(450.75); cout << bill_mary.balance() << endl; }