It has to be ad-bc Here is my code but it says that a aList is not defined
def findDeterminate(alist):
value=0
aList = [[a,b],[c,d]]
for i in range (0, len(aList)):
value = aList[0][1]*aList[1][2] - aList[0][2]*aList[1][1]
def main():
a = str(input("what is your first value"))
b = str(input('what is your second value'))
c = str(input('what is your third value'))
d = str(input('what is your fourth value'))
return findDeterminate(aList)