class HDD: def __init__(self, size, count): self.size = size self.count = count @property def total_size(self): return self.size * self.count