def maximum(a,b): if a>=b: return a else: return b def itsCold(temperature): if temperature > 70: print ("It's no longer cool.") elif temperature > 50: print ("It's starting to get cool in here!") b = 20 else: print ("It's COLD!") return b