write a function role that represents this sentence

c is 8 more than half of n

def role(n):

c = (n/2) + 8
return c