#en funksjon som printer det storste av to tall def storstAvTo(tall1 ,tall2): if tall1 > tall2: return tall1 return tall2 print(storstAvTo(1,2))