def thousands_seperated_to_int(thousands_seperated: str) -> int: return int(thousands_seperated.replace(',', ''))