In the following piece of code that calculates the temperature in Fahrenheit, which piece would be most appropriate to develop a function for?

c = 100

print(c * 9/5 + 32)

c = 0

print(c * 9/5 + 32)

c = 30

print(c * 9/5 + 32)

The piece of code that calculates the temperature in Fahrenheit using the formula c * 9/5 + 32 would be most appropriate to develop a function for.