Design and implement a spreadsheet class with the following methods: - set_cell(label, value): Set a cell (identified by an Excel-style label like 'A1', 'B10') to either an integer value or a formula string. Formulas are prefixed with '=' (e.g., '=A1+A2+5') and support addition only (+). Setting a cell may update…