вам нужно добавить круглые скобки, поэтому должно быть так:
temp=int(input("what is the Temperature?:"))
temp_unit= input("Celcius or Farenheit?:")
if temp_unit == "C" or temp_unit=="c":
print("The given temperature in Fahrenheit is "+(9/5)*(temp+32))
else:
print("The given temperature in Celcius is "+(5/9)*(temp-32))