I want to check that the two user's inputs exist in the dict together as a key value pair togehter; for example:
dict = {"ABC" : 123, "DEF" : 456}
firstInput= input("Please enter your age: ")
secondInput= input("Please enter your name: ")
Then: If the user's inputs are "ABC" and 123, respectively, or "DEF" and 456, it will return some value and another if not.