foerste = int(input("F?rste tall: ")) andre = int(input("Andre tall: ")) tredje = int(input("Tredje tall: ")) if foerste > andre and foerste > tredje: print("St?rste verdien er:", foerste) elif andre > foerste and andre > tredje: print("St?rste verdien er:") print(andre) elif tredje > foerste and tredje > andre: print("St?rste verdien er:") print(tredje)