def stoerst(): if tall1 > tall2: return tall1 elif tall2 > tall1: return tall2 else: return tall1 stoerst_tall = stoerst(10, 5) print(stoerst_tall)