What code is needed in order for the message “Contact assistant dean” to be displayed from the following example?

if s_class.lower()=="fr":

if techFee>=100:

print("Contact financial aid")

else:

print("Tech fee approved")

elif s_class.lower()=="so":

if techFee>=100 and techFee<500:

print("Contact financial aid")

elif techFee>=500:

print("Contact assistant dean")

else:

print("Tech fee approved")

else:

if techFee<=700:

print("Tech fee approved")

else:

print("Contact dean")

In order for the message "Contact assistant dean" to be displayed, the value of `s_class` should be "so" and the value of `techFee` should be greater than or equal to 500.