def storst_av_to1(tall1, tall2): if tall1 > tall2: print(tall1) elif tall2 > tall1: print(tall2) else: print("Tallene er like") #storst_av_to(6,3) def storst_av_to2(tall1, tall2): if tall1 > tall2: return tall1 elif tall2 > tall1: return tall2 else: print("Tallene er like") return 0 def multipliser(): storst = storst_av_to2(15,16) return storst*4