a = 4 b = 3 if a > b: print(a, "er st?rre enn", b) if a < b: print(a, "er mindre enn", b) if a == b: print(a, "er lik", b)