# heltall og flyttall heltall1 = int(input("Heltall: ")) heltall2 = int(input("Heltall: ")) flyttall1 = float(input("Flyttall: ")) flyttall2 = float(input("Flyttall: ")) print(heltall1+heltall2) print(heltall1 * heltall2) print(flyttall1 + flyttall2) print(flyttall1*flyttall2) print(heltall1 + flyttall1) print(heltall2*flyttall2) # eksperimenter med blanding av typer!