What parameter does this function require ?

def converttemp(temp):
Celsiustemp=(temp - 32 ) * (5/9)
Return celsiustemp

The function requires the parameter 'temp', which represents the temperature in Fahrenheit that needs to be converted to Celsius.