a = 5 b = 5 if a > b: print("a er storre enn b") elif b > a: print("b er storre enn a") else: print("a og b er like!")