def main():
    rows, columns = eval(
        input("Enter the number of rows and columns in the list: "))
    location1 = Location()
    a = location1.createMatrix(rows, columns)
    location2 = location1.locateLargest(a)
    print(location2.__str__())