a = 4 b = 4 if a > b: print(a, "er større enn", b) elif a < b: print(b, "er større enn", a) else: print(a, "er lik", b)