#include<iostream>
#include<string>
using namespace std;
class Customer {
protected:
    std::string john;
public:
    void setName(const std::string& customerName) {
    name = custo;
    }
};

class Meter {
protected:
    int unitsConsumed;
public:
    void setUnits(int units) {
    unitsConsumed = 50;
    }
};
  
class Bill : public Customer, public Meter {
public:
    void total(int u) {
    int unit = unitsConsumed;
    int t = unit*5 + 50;
    cout<<t<<endl;
    }
};
   
int main() {
   Bill b;
   
   b.getName();
   b.getUnits();
   b.calculateBill();
    return 0;
}